/*
* Copyright (C) 2024 Jonni Liljamo <jonni@liljamo.com>
*
* This file is licensed under GPL-3.0-or-later, see NOTICE and LICENSE for
* more information.
*/
package handlers
import (
"net/http"
"git.src.quest/~liljamo/emerwen-web/internal/components"
"git.src.quest/~liljamo/emerwen-web/internal/renderer"
"github.com/gin-gonic/gin"
)
// Index returns a gin handler for the index route.
func Index() gin.HandlerFunc {
return func(c *gin.Context) {
r := renderer.New(BaseContext(c), http.StatusOK, components.Index())
c.Render(http.StatusOK, r)
}
}