first commit

This commit is contained in:
2025-07-26 22:03:26 +03:00
commit c73f9edaed
14 changed files with 7143 additions and 0 deletions

12
next.config.mjs Normal file
View File

@ -0,0 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
optimizePackageImports: [
"@mantine/core",
"@mantine/hooks",
],
},
}
export default nextConfig