feat: initial commit

This commit is contained in:
2026-04-09 20:52:10 -03:00
commit 1a92cc6c11
86 changed files with 19533 additions and 0 deletions

15
next.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
async redirects() {
return [
{
source: '/',
destination: '/home',
permanent: true,
},
];
},
};
export default nextConfig;