-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
28 lines (25 loc) · 706 Bytes
/
App.tsx
File metadata and controls
28 lines (25 loc) · 706 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
import React from 'react';
import Layout from './components/Layout.tsx';
import Hero from './components/Hero.tsx';
import Manifesto from './components/Manifesto.tsx';
import Features from './components/Features.tsx';
import Library from './components/Library.tsx';
import Systems from './components/Systems.tsx';
import About from './components/About.tsx';
import Authority from './components/Authority.tsx';
import FooterCTA from './components/FooterCTA.tsx';
const App: React.FC = () => {
return (
<Layout>
<Hero />
<Manifesto />
<Features />
<Library />
<Systems />
<About />
<Authority />
<FooterCTA />
</Layout>
);
};
export default App;