diff --git a/src/app/page.tsx b/src/app/page.tsx index ba3e5c8..f568780 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,12 +7,14 @@ 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" +import { Projects } from "@/components/home/projects" export default function Home() { return (
+
+

Trova gruppi, risorse e supporto tra gli studenti del Polimi diff --git a/src/components/home/materials.tsx b/src/components/home/materials.tsx index ab02f1e..45a9f5e 100644 --- a/src/components/home/materials.tsx +++ b/src/components/home/materials.tsx @@ -29,7 +29,7 @@ const quickLinks = [ export function Materials() { return ( -
+
{/* TODO sotto sm usare le altre card fatte da Diubi */} diff --git a/src/components/home/projects.tsx b/src/components/home/projects.tsx new file mode 100644 index 0000000..210d37b --- /dev/null +++ b/src/components/home/projects.tsx @@ -0,0 +1,73 @@ +import { FiArrowUpRight } from "react-icons/fi" +import { CardCaption } from "@/components/card-caption" +import { Button } from "@/components/ui/button" +import { Carousel, CarouselContent, CarouselDots, CarouselItem } from "../ui/carousel" + +const featuredCards = [ + { + title: "WeBeepSync", + caption: + "WeBeep Sync è una semplice app, user-friendly e senza compromessi che serve per tenere sincronizzati tutti i tuoi file di WeBeep.", + }, + { + title: "PolimiSchedule", + caption: + "Genera un file iCalendar (.ics) a partire dal formato testuale dell’Orario delle lezioni. Possibilità di importare su Google Calendar.", + }, + { + title: "WiFiLinux", + caption: "Scarica ed esegui lo script Python per attivare la connessione permanente al WiFi Polimi", + }, + { + title: "The TOL Project", + caption: "Un simulatore gratuito del test di ammissione per le aspiranti matricole di Ingegneria del PoliMi.", + }, +] as const + +export function Projects() { + return ( +
+
+

+ 15+ Projects +

+

+ Progetti e strumenti creati dalla nostra community. Qui trovi le iniziative nate dagli studenti del + Politecnico per semplificare la vita universitaria e creare innovazione. Hai un'idea o un progetto? Proponilo! + Puoi trovare collaboratori, ricevere supporto dal nostro team e dare vita alla tua soluzione. +

+

+ Progetti e strumenti nati dalla community del Politecnico per semplificare la vita universitaria e promuovere + l’innovazione. Hai un’idea? Proponila, trova collaboratori e realizza la tua soluzione. +

+ +
+ +
+
+ {featuredCards.map((card) => ( + + ))} +
+
+ +
+ + + {featuredCards.map((card) => ( + +
+ +
+
+ ))} +
+ +
+
+
+ ) +}