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