add about page
All checks were successful
mozhi pipeline / Push Docker image to Codeberg docker registry (push) Successful in 3m9s
mozhi pipeline / Build and publish artifacts (push) Successful in 4m11s

This commit is contained in:
2023-09-10 20:43:48 +05:30
parent 527877a321
commit 6c509efcd2
3 changed files with 22 additions and 1 deletions

9
pages/about.go Normal file
View File

@@ -0,0 +1,9 @@
package pages
import (
"github.com/gofiber/fiber/v2"
)
func HandleAbout(c *fiber.Ctx) error {
return c.Render("about", fiber.Map{})
}