Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ 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 { Hero } from "@/components/home/hero"
import { Materials } from "@/components/home/materials"

Expand All @@ -11,6 +12,7 @@ export default function Home() {
<main className="w-full">
<Hero />
<Materials />
<AboutUs />
<div className="mx-auto w-fit py-12">
<CardMultipleIcons
icons={[
Expand Down
15 changes: 15 additions & 0 deletions src/components/home/about-us.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Button } from "@/components/ui/button"

export function AboutUs() {
return (
<section className="mx-auto flex min-h-screen w-full max-w-4xl flex-col items-center justify-center gap-24 px-6 py-12 text-center">
<h1 className="typo-display-medium lg:typo-display-large bg-linear-to-r from-text-primary via-blue-secondary to-blue-primary bg-clip-text text-transparent">
PoliNetwork unisce gli studenti del Poli con gruppi, risorse e supporto in un'unica community.
</h1>

<Button variant="primary" size="lg">
About us
</Button>
</section>
)
}
Loading