This repository has been archived by the owner on Jun 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.tsx
47 lines (45 loc) · 1.56 KB
/
App.tsx
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
import React from "react";
import { createRoot } from 'react-dom/client';
import "@fontsource/rock-salt";
import "@fontsource/yeseva-one";
import "@fontsource/poppins";
import "@fontsource/shadows-into-light";
import TopNav from "./sections/nav/TopNav";
import AppLayout from "./components/AppLayout";
import Hero from "./sections/hero/Hero";
import FeatureCards from "./sections/feature-cards/FeatureCards";
import Footer from "./components/Footer";
import Tokenomics from "./sections/tokenomics/Tokenomics";
import Roadmap from "./sections/roadmap/Roadmap";
import MainFeatures from "./sections/main-features/MainFeatures";
import Team from "./sections/team/Team";
import Funding from "./sections/funding/Funding";
import CreatorProfiles from "./sections/creator-profiles/CreatorProfiles";
import BuiltWith from "./sections/built-with/BuiltWith";
import Moderation from "./sections/moderation/Moderation";
import OpenSource from "./sections/open-source/OpenSource";
function App() {
return (
<>
<AppLayout>
<TopNav />
<Hero />
<MainFeatures />
<CreatorProfiles />
<FeatureCards />
<Tokenomics />
<Roadmap />
<Moderation />
<OpenSource />
<Team />
<BuiltWith />
{/* <Funding /> */}
</AppLayout>
<Footer />
</>
);
};
const container = document.getElementById("react-container");
if (container) {
createRoot(container).render(<App />);
}