add more projects
This commit is contained in:
parent
1ef1f5cda4
commit
8e4b32fc9d
1 changed files with 72 additions and 0 deletions
72
page.go
72
page.go
|
|
@ -26,6 +26,54 @@ type Page struct {
|
||||||
func renderPage(c echo.Context) error {
|
func renderPage(c echo.Context) error {
|
||||||
data := Page{}
|
data := Page{}
|
||||||
data.Projects = []Project{
|
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",
|
Name: "Shoto",
|
||||||
URL: "https://www.shoto.at",
|
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)
|
return c.Render(200, "index.html", data)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue