Initial Commit
This commit is contained in:
59
app/page.jsx
Normal file
59
app/page.jsx
Normal file
@ -0,0 +1,59 @@
|
||||
import Footer5 from "@/components/footers/Footer5";
|
||||
import Header2 from "@/components/headers/Header2";
|
||||
import Contact from "@/components/common/Contact";
|
||||
import CaseStudies from "@/components/homes/marketing-consulting/CaseStudies";
|
||||
import Features2 from "@/components/homes/marketing-consulting/Features2";
|
||||
import Figures from "@/components/homes/marketing-consulting/Figures";
|
||||
import Hero from "@/components/homes/finance-consulting/Hero";
|
||||
import ThreeImageDisplay from "@/components/common/ThreeImageDisplay";
|
||||
import Brands from "@/components/homes/marketing-consulting/Brands";
|
||||
import Services from "@/components/homes/finance-consulting/Services";
|
||||
import Testimonials from "@/components/homes/marketing-consulting/Testimonials";
|
||||
import React from "react";
|
||||
|
||||
export const metadata = {
|
||||
title:
|
||||
"Marketing Consulting || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
|
||||
export default function MarketingConsultionPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="primary-4">
|
||||
<div id="wrapper" className="counter-scroll">
|
||||
<Header2 />
|
||||
<section id="home">
|
||||
<Hero />
|
||||
</section>
|
||||
<div className="main-content">
|
||||
<section id="services">
|
||||
<Features2 />
|
||||
<Figures/>
|
||||
</section>
|
||||
|
||||
<section id="focus-areas">
|
||||
<Services />
|
||||
</section>
|
||||
|
||||
<section id="team">
|
||||
<CaseStudies />
|
||||
</section>
|
||||
|
||||
<section id="about">
|
||||
<Testimonials />
|
||||
<ThreeImageDisplay />
|
||||
<Brands/>
|
||||
</section>
|
||||
|
||||
<section id="contact">
|
||||
<Contact />
|
||||
</section>
|
||||
</div>
|
||||
<Footer5 />
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user