From f326cef34025089364e33c1e66364b7bb8966a03 Mon Sep 17 00:00:00 2001 From: aeson tran Date: Fri, 7 Aug 2026 19:46:06 -0700 Subject: [PATCH 1/2] initial add past projects section to main page added very basic functionality for past projects on the main page --- app/page.tsx | 2 + src/components/project-card/index.tsx | 2 +- src/components/project-card/projects.json | 13 + src/sections/Home-Past-Projects/index.tsx | 112 +++++++++ .../Home-Past-Projects/style.module.scss | 232 ++++++++++++++++++ src/sections/ProjectDetail/index.tsx | 2 +- 6 files changed, 361 insertions(+), 2 deletions(-) create mode 100644 src/sections/Home-Past-Projects/index.tsx create mode 100644 src/sections/Home-Past-Projects/style.module.scss diff --git a/app/page.tsx b/app/page.tsx index 87618c3..380f50c 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -7,12 +7,14 @@ import Footer from "@/src/components/footer"; import Hero from "@/src/sections/Hero"; import FAQ from "@/src/sections/FAQ"; import Timeline from "@/src/sections/Timeline"; +import HomePastProjects from "@/src/sections/Home-Past-Projects"; // here we will compile all the sections of the website together const Home: NextPage = () => { return (
+