fix: remove files

This commit is contained in:
Orace.A 2025-03-24 20:26:28 +01:00
parent b6438f6ebe
commit a2b76c9e69

View File

@ -1,6 +1,7 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css"; import "./globals.css";
import NextTopLoader from "nextjs-toploader";
const geistSans = Geist({ const geistSans = Geist({
variable: "--font-geist-sans", variable: "--font-geist-sans",
@ -13,8 +14,8 @@ const geistMono = Geist_Mono({
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Create Next App", title: "Private Docs",
description: "Generated by create next app", description: "Un application de gestion de documents",
}; };
export default function RootLayout({ export default function RootLayout({
@ -27,6 +28,7 @@ export default function RootLayout({
<body <body
className={`${geistSans.variable} ${geistMono.variable} antialiased`} className={`${geistSans.variable} ${geistMono.variable} antialiased`}
> >
<NextTopLoader />
{children} {children}
</body> </body>
</html> </html>