add more projects

This commit is contained in:
jc 2024-04-24 03:16:59 -04:00
commit 8e4b32fc9d
No known key found for this signature in database

72
page.go
View file

@ -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)