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

9
next.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
optimizePackageImports: ["@chakra-ui/react"]
}
};
export default nextConfig;