landing page + results + features

This commit is contained in:
2025-11-20 19:54:14 +00:00
parent 68d82aec3b
commit b7405d787c
32 changed files with 1697 additions and 145 deletions

View File

@@ -1,7 +1,22 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'picsum.photos',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;