Files
aystone-manager/app/layout.tsx
T

33 lines
894 B
TypeScript
Raw Normal View History

2025-07-29 05:15:33 +02:00
import Providers from "@/app/providers";
import AdsSideBanners from "@/components/AdsSideBanners";
import Footer from "@/components/Footer";
import Navbar from "@/components/Navbar";
2025-07-27 01:33:53 +02:00
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
2025-07-29 05:19:11 +02:00
title: "AyStone Instance Cobble",
description: "Ce petit site est une application de gestion de projets Minecraft, pensée spécialement pour la communauté du serveur Aystone.",
icons: {
icon: "/aystone.png",
},
2025-07-27 01:33:53 +02:00
};
export default function RootLayout({
children,
2025-07-29 05:15:33 +02:00
}: {
children: React.ReactNode;
}) {
2025-07-27 01:33:53 +02:00
return (
2025-07-29 05:15:33 +02:00
<html lang="fr">
<body className="bg-[#0e0e10] text-white antialiased">
<AdsSideBanners />
<Providers>
<Navbar />
<main className="min-h-screen">{children}</main>
<Footer />
</Providers>
2025-07-27 01:33:53 +02:00
</body>
</html>
);
2025-07-29 05:15:33 +02:00
}