Files
FinMarket/app/(blogs)/blog-v5/page.jsx
T
CHIEFSOFT\ameye d8c7ec4866 first commit
2025-02-12 23:25:43 -05:00

84 lines
2.9 KiB
React

import Header from "../../../components/header/Header";
import BlogStyle5 from "../../../components/blog/BlogStyle5";
import Footer from "../../../components/footer/Footer";
import CopyRight from "../../../components/footer/CopyRight";
export const metadata = {
title: 'Blog V5 || Deski-Saas & Software Nextjs Template',
description: `Unleash the full potential of your software projects with our SaaS-focused Next.js template. Create engaging blogs, showcase your talented team, set up an online shop, provide helpful FAQs, and offer exceptional services with our feature-rich solution. Elevate your SaaS and software development with ease and drive growth. Try it now and take your projects to new heights.`,
}
const BlogV5 = () => {
return (
<div className="main-page-wrapper">
{/* End Page SEO Content */}
<Header />
{/* End Header */}
{/* =============================================
Fancy Hero One
============================================== */}
<div className="fancy-hero-one">
<div className="container">
<div className="row">
<div className="col-xl-9 col-lg-10 m-auto">
<h2 className="font-gilroy-bold">
Check our company inside story
</h2>
</div>
<div className="col-lg-9 m-auto">
<p className="font-rubik">
You will find here our company news and latest update
</p>
</div>
</div>
</div>
<div className="bubble-one"></div>
<div className="bubble-two"></div>
<div className="bubble-three"></div>
<div className="bubble-four"></div>
<div className="bubble-five"></div>
<div className="bubble-six"></div>
</div>
{/* /.fancy-hero-one */}
{/* =====================================================
Feature Blog One
===================================================== */}
<div className="feature-blog-four blog-page-bg">
<div className="shapes shape-one"></div>
<div className="shapes shape-two"></div>
<div className="shapes shape-three"></div>
<div className="container">
<div className="row">
<BlogStyle5 />
</div>
{/* End .row */}
</div>
</div>
{/* /.feature-blog-one */}
<footer className="theme-footer-one pt-130 md-pt-70">
<div className="top-footer">
<div className="container">
<Footer />
</div>
{/* /.container */}
</div>
{/* /.top-footer */}
<div className="container">
<div className="bottom-footer-content">
<CopyRight />
</div>
{/* /.bottom-footer */}
</div>
</footer>
{/* /.theme-footer-one */}
</div>
);
};
export default BlogV5;