forked from Movalabs-crew/mova-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.jsx
More file actions
51 lines (43 loc) · 1.26 KB
/
Copy pathpage.jsx
File metadata and controls
51 lines (43 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"use client";
import Hero from "./(landingpage)/Hero";
import Carousel from "./(landingpage)/Categories";
import Catalogue from "./(landingpage)/Catalogue";
import Catalogue2 from "./(landingpage)/Catalogue2";
import Catalogue3 from "./(landingpage)/Catalogue3";
import Stellar from "./(landingpage)/Stellar";
import Features from "./(landingpage)/Features";
import HowItWorks from "./(landingpage)/HowItWorks";
import Testimonials from "./(landingpage)/Testimonials";
import FAQ from "./(landingpage)/FAQ";
import Newsletter from "./(landingpage)/newsletter";
import AboutUs from "./(landingpage)/Aboutus";
import ContactUs from "./(landingpage)/ContactUs";
import Slider from "./(landingpage)/Slider";
export default function FirstPage() {
return (
<>
{/* Hero & Product Showcase */}
<Hero />
<Carousel />
<Catalogue />
{/* Why Mova Store */}
<Catalogue2 />
{/* Stellar Payment Section */}
<Stellar />
<Features />
<HowItWorks />
{/* Our Story */}
<Catalogue3 />
<Slider />
{/* Social Proof */}
<Testimonials />
{/* FAQ */}
<FAQ />
{/* Mission & OSS */}
<AboutUs />
{/* Newsletter & Contact */}
<Newsletter />
<ContactUs />
</>
);
}