-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.jsx
More file actions
30 lines (27 loc) · 763 Bytes
/
Copy pathApp.jsx
File metadata and controls
30 lines (27 loc) · 763 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
30
import ButtonGradient from "./assets/svg/ButtonGradient";
import Benefits from "./components/Benefits";
import Collaboration from "./components/Collaboration";
import Footer from "./components/Footer";
import Header from "./components/Header";
import Hero from "./components/Hero";
import Pricing from "./components/Pricing";
import Roadmap from "./components/Roadmap";
import Services from "./components/Services";
const App = () => {
return (
<>
<div className="pt-[4.75rem] lg:pt-[5.25rem] overflow-hidden">
<Header />
<Hero />
<Benefits />
<Collaboration />
<Services />
<Pricing />
<Roadmap />
<Footer />
</div>
<ButtonGradient />
</>
);
};
export default App;