package handlers import ( "templ-tests/app/templates" "github.com/gofiber/fiber/v2" ) var pcAbout templates.PageContext = templates.PageContext{ Title: "Welcome to the demo - About", ActivePage: "about", } func About(f *fiber.Ctx) error { Render(f, templates.About(pcAbout)) return nil }