fix: resolve #8 - сделай новую страницу
All checks were successful
Bun CI/CD / test (pull_request) Successful in 9s
Bun CI/CD / deploy-staging (pull_request) Has been skipped
Bun CI/CD / deploy-prod (pull_request) Has been skipped

This commit is contained in:
AI Agent
2026-01-03 19:14:33 +00:00
parent 51a80ccb6f
commit ab88c56320
7 changed files with 6505 additions and 47 deletions

View File

@@ -1,6 +1,8 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { AuthProvider } from "./contexts/AuthContext";
import Navigation from "./components/Navigation";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -27,7 +29,10 @@ export default function RootLayout({
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
<AuthProvider>
<Navigation />
{children}
</AuthProvider>
</body>
</html>
);