-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpage.tsx
More file actions
35 lines (34 loc) · 1.22 KB
/
page.tsx
File metadata and controls
35 lines (34 loc) · 1.22 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
import {VerifiedChecker} from "../components/VerifiedChecker/VerifiedChecker";
import WhatToExpect from "../components/WhatToExpect/WhatToExpect";
import Sponsors26 from "../components/Sponsors/Sponsors26";
import Newsletter from "../components/Newsletter/Newsletter";
import {Faq} from "../components/Faq/Faq";
import Team from "../components/Team/Team";
import Speakers from "../components/Speakers/Speakers";
import Jury from "../components/Jury/Jury";
import {Features} from "../components/Features/Features";
import LandingImage from "../components/LandingImage/LandingImage";
import {Gallery} from "../components/Gallery/Gallery";
import Registration from "../components/Registration/Registration";
import {Location} from "../components/Location/Location";
import {TimeTable} from "../components/TimeTable/TimeTable";
export default function Page() {
return (
<>
<LandingImage/>
<VerifiedChecker/>
<WhatToExpect/>
<Features/>
<Sponsors26/>
<Gallery/>
<Newsletter/>
<Registration />
<Location />
<Speakers/>
<Jury/>
<TimeTable/>
<Faq/>
<Team/>
</>
)
}