initial commit

This commit is contained in:
theoleuthardt 2025-01-30 12:56:04 +00:00
commit 025b69021b
15 changed files with 6233 additions and 0 deletions

23
src/app/layout.tsx Normal file
View file

@ -0,0 +1,23 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Werkzeugkiste",
description: "Collection of useful digital utilities",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`antialiased`}
>
{children}
</body>
</html>
);
}