From 8e4b32fc9da2b1d9502b0861604167ade0f36552 Mon Sep 17 00:00:00 2001 From: jc <46619361+juancwu@users.noreply.github.com> Date: Wed, 24 Apr 2024 03:16:59 -0400 Subject: [PATCH] add more projects --- page.go | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/page.go b/page.go index 394fef4..6b963fb 100644 --- a/page.go +++ b/page.go @@ -26,6 +26,54 @@ type Page struct { func renderPage(c echo.Context) error { data := Page{} data.Projects = []Project{ + { + Name: "HawkHacks Website", + URL: "https://hawkhacks.ca", + Description: "HawkHacks is a 36 hour in-person hackathon hosted at Wilfrid Laurier University.", + Repo: "https://github.com/LaurierHawkHacks/Landing", + Classes: "border-orange-300", + TechList: []Tech{ + { + TechName: "React", + TechURL: "https://react.dev/", + TechClasses: "", + }, + { + TechName: "Firebase", + TechURL: "https://firebase.google.com/", + TechClasses: "", + }, + { + TechName: "TailwindCSS", + TechURL: "https://tailwindcss.com/", + TechClasses: "", + }, + }, + }, + { + Name: "LCS Website", + URL: "https://lauriercs.ca", + Description: "The official Computer Science club at Wilfrid Laurier University website.", + Repo: "https://github.com/LaurierCS/Website", + Classes: "border-cyan-400", + TechList: []Tech{ + { + TechName: "React", + TechURL: "https://react.dev/", + TechClasses: "", + }, + { + TechName: "Firebase", + TechURL: "https://firebase.google.com/", + TechClasses: "", + }, + { + TechName: "Mantine UI", + TechURL: "https://mantine.dev/", + TechClasses: "", + }, + }, + }, { Name: "Shoto", URL: "https://www.shoto.at", @@ -88,6 +136,30 @@ func renderPage(c echo.Context) error { }, }, }, + { + Name: "This Site", + URL: "https://juancwu.dev", + Description: "My personal portolio site?", + Repo: "https://github.com/juancwu/potoforio", + Classes: "border-gray-600", + TechList: []Tech{ + { + TechName: "Golang", + TechURL: "https://go.dev/", + TechClasses: "bg-zinc-950 text-zinc-100", + }, + { + TechName: "HTMX", + TechURL: "https://htmx.org/", + TechClasses: "bg-zinc-950 text-zinc-100", + }, + { + TechName: "Hyperscript", + TechURL: "https://hyperscript.org/", + TechClasses: "bg-zinc-950 text-zinc-100", + }, + }, + }, } return c.Render(200, "index.html", data)