first commit

This commit is contained in:
2025-12-02 14:42:40 +05:30
commit e87bdd45a1
66 changed files with 9380 additions and 0 deletions

18
next.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "www.alucoildesign.com",
},
{
protocol: "https",
hostname: "lh3.googleusercontent.com",
},
],
},
};
export default nextConfig;