-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
38 lines (36 loc) · 1.09 KB
/
App.tsx
File metadata and controls
38 lines (36 loc) · 1.09 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
import React from 'react';
import Navbar from './components/Navbar';
import Hero from './components/Hero';
import VideoShowcase from './components/VideoShowcase';
import HowItWorks from './components/HowItWorks';
import Features from './components/Features';
import Gallery from './components/Gallery';
import Pricing from './components/Pricing';
import FAQ from './components/FAQ';
import Testimonials from './components/Testimonials';
import Footer from './components/Footer';
import StickyCTA from './components/StickyCTA';
import AIChatWidget from './components/AIChatWidget';
import DevNotice from './components/DevNotice';
const App: React.FC = () => {
return (
<div className="min-h-screen flex flex-col bg-slate-950 text-slate-200 font-sans">
<Navbar />
<main className="flex-grow">
<Hero />
<VideoShowcase />
<HowItWorks />
<Features />
<Gallery />
<Pricing />
<FAQ />
{/* <Testimonials /> */}
</main>
<Footer />
<StickyCTA />
<AIChatWidget />
<DevNotice />
</div>
);
};
export default App;