Migrated code from Kobold Kid webite amd made a simple static page site.

This commit is contained in:
Lucid Kobold
2025-08-08 19:14:56 -04:00
parent ab1764e015
commit b4a4b8d9bc
78 changed files with 9313 additions and 7230 deletions

14
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import React from "react";
import { Provider } from "@/components/ui/provider";
export default function RootLayout(props: { children: React.ReactNode }) {
const { children } = props;
return (
<html suppressHydrationWarning>
<link rel="icon" href="/images/logo/favicon/favicon.ico" sizes="any" />
<body>
<Provider>{children}</Provider>
</body>
</html>
);
}