-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage.tsx
More file actions
33 lines (32 loc) · 1.11 KB
/
page.tsx
File metadata and controls
33 lines (32 loc) · 1.11 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
import Image from "next/image"
import { FiFacebook, FiGithub, FiInstagram, FiLinkedin } from "react-icons/fi"
import discord from "@/assets/icons/discord.svg"
import telegram from "@/assets/icons/telegram.svg"
import { CardMultipleIcons } from "@/components/card-multiple-icons"
import { AboutUs } from "@/components/home/about-us"
import { CarouselMock } from "@/components/home/carousel-mock"
import { Hero } from "@/components/home/hero"
import { Materials } from "@/components/home/materials"
export default function Home() {
return (
<main className="w-full">
<Hero />
<Materials />
{/* TODO: delete this when merging */}
<CarouselMock />
<AboutUs />
<div className="mx-auto w-fit py-12">
<CardMultipleIcons
icons={[
<Image key="telegram" src={telegram} alt="Telegram" />,
<FiInstagram key="instagram" />,
<FiLinkedin key="linkedin" />,
<FiFacebook key="facebook" />,
<Image key="discord" src={discord} alt="Discord" />,
<FiGithub key="github" />,
]}
/>
</div>
</main>
)
}