Initial commit

This commit is contained in:
1elle1
2026-01-28 18:34:47 +01:00
commit 3310433bb1
28 changed files with 3635 additions and 0 deletions

11
next.config.js Normal file
View File

@@ -0,0 +1,11 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
compress: true,
images: {
formats: ['image/avif', 'image/webp'],
},
};
module.exports = nextConfig;