package dashboard import ( dashboardService "dove/services/dashboard" "dove/utils/meta" "dove/utils/shortcuts" "github.com/gofiber/fiber/v2" ) func Overview(context *fiber.Ctx) error { meta.SetPageTitle(context, "Overview") return shortcuts.Render(context, "dashboard/overview", dashboardService.Overview()) }