feat: Implementação de submenus laterais (flyout), correções de UI e proteção de rotas (AuthGuard)

This commit is contained in:
Erik Silva
2025-12-12 15:24:38 -03:00
parent 83ce15bb36
commit 04c954c3d9
36 changed files with 2628 additions and 923 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Inter, Open_Sans, Fira_Code } from "next/font/google";
import { Inter, Arimo, Fira_Code } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "next-themes";
@@ -9,10 +9,10 @@ const inter = Inter({
weight: ["400", "500", "600", "700"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
const arimo = Arimo({
variable: "--font-arimo",
subsets: ["latin"],
weight: ["600", "700"],
weight: ["400", "500", "600", "700"],
});
const firaCode = Fira_Code({
@@ -50,9 +50,8 @@ export default function RootLayout({
`,
}}
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css" />
</head>
<body className={`${inter.variable} ${openSans.variable} ${firaCode.variable} antialiased`}>
<body className={`${inter.variable} ${arimo.variable} ${firaCode.variable} antialiased`}>
<ThemeProvider attribute="class" defaultTheme="light" enableSystem={false} storageKey="theme">
{children}
</ThemeProvider>