diff --git a/cmd/main.go b/cmd/main.go index 8212556..03bb914 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -39,8 +39,6 @@ func main() { e.Static("/static", "static") e.GET("/", pages.Index) - e.GET("/projects", pages.Projects) - e.GET("/about-me", pages.AboutMe) e.Logger.Fatal(e.Start(":5173")) } diff --git a/pkg/pages/index.go b/pkg/pages/index.go index d8640f5..36830ad 100644 --- a/pkg/pages/index.go +++ b/pkg/pages/index.go @@ -9,11 +9,3 @@ type Page struct {} func Index(c echo.Context) error { return c.Render(200, "index.html", Page{}) } - -func Projects(c echo.Context) error { - return c.Render(200, "projects-only.html", Page{}) -} - -func AboutMe(c echo.Context) error { - return c.Render(200, "about-me.html", Page{}) -}