-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathApp.jsx
More file actions
29 lines (27 loc) · 791 Bytes
/
App.jsx
File metadata and controls
29 lines (27 loc) · 791 Bytes
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
import Navbar from './components/Navbar';
import Hero from './components/Hero';
import SocialProof from './components/SocialProof';
import Features from './components/Features';
import UseCases from './components/UseCases';
import Pricing from './components/Pricing';
import FAQ from './components/FAQ';
import CallToAction from './components/CallToAction';
import Footer from './components/Footer';
function App() {
return (
<div className="app">
<Navbar />
<main>
<Hero />
<SocialProof />
<Features />
<UseCases />
<Pricing />
<FAQ />
<CallToAction />
</main>
<Footer />
</div>
);
}
export default App;