-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
48 lines (43 loc) · 1.2 KB
/
App.tsx
File metadata and controls
48 lines (43 loc) · 1.2 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
import React from 'react';
import Navbar from './components/Navbar';
// import Hero from './components/Hero';
import HeroImage from './components/HeroImage';
import About from './components/About';
import PressSlider from './components/PressSlider';
import Features from './components/Features';
import HowItWorks from './components/HowItWorks';
import StyleSection from './components/StyleSection';
import Reviews from './components/Reviews';
import FAQSection from './components/FAQSection';
import Footer from './components/Footer';
const App: React.FC = () => {
return (
<div className="relative antialiased">
<Navbar />
<main>
<HeroImage />
<section id="press">
<PressSlider />
</section>
<section id="how-it-works">
<HowItWorks />
</section>
<section id="style">
<StyleSection />
</section>
<Features />
<section id="reviews">
<Reviews />
</section>
<section id="about">
<About />
</section>
<section id="faq-section">
<FAQSection />
</section>
</main>
<Footer />
</div>
);
};
export default App;