feat: initial release of NASG

This commit is contained in:
UltraLionFr
2025-08-20 22:56:16 +02:00
parent 34af26c8ea
commit 586c1a9720
21 changed files with 540 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import Footer from "@/components/Footer";
import GithubLink from "@/components/GithubLink";
import { metadata } from "@/metadata.config";
import "./globals.css";
export { metadata };
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className="scroll-smooth">
<body className="min-h-screen bg-neutral-950 text-white antialiased">
<GithubLink />
{children}
<Footer />
</body>
</html>
);
}