Corporate
ITAM University Landing
Full-stack landing page for ITAM university department. Server-rendered with Go backend, bilingual content management, and optimized performance.
Tech Stack
GoChiPostgreSQLReactTypeScriptTailwind CSSDocker
Built a production-grade university landing page with a Go backend following the Chi + pgx pattern. Features include bilingual content management, JWT-based admin panel, and server-side rendering for optimal SEO.
98
Lighthouse Score
6
Dependencies
<1s
Load Time
EN/RU
Languages
go
r := chi.NewRouter()
r.Use(middleware.Logger)
r.Use(middleware.Recoverer)
r.Route("/api", func(r chi.Router) {
r.Get("/content", h.ListContent)
r.Group(func(r chi.Router) {
r.Use(authMiddleware)
r.Put("/content/{key}", h.UpdateContent)
})
})