feat: initial commit of 'Tor der Wandlerin' - Next.js 16 + R3F landingpage

# Conflicts:
#	README.md
This commit is contained in:
Pixel
2026-04-11 14:26:31 +02:00
parent 134ccf38e3
commit ca54e5c6f7
8 changed files with 223 additions and 1 deletions
+34
View File
@@ -0,0 +1,34 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Pixel | Tor der Wandlerin",
description: "Pixel - Architektin der FaeBits-Anderswelt",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="de">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}