feat: add project page with mock data and update project type to include thumbnail

This commit is contained in:
Maze Winther
2025-06-29 21:32:51 +02:00
parent 3bc00f8e40
commit bfba482098
5 changed files with 227 additions and 0 deletions

View File

@ -7,6 +7,18 @@ const nextConfig: NextConfig = {
reactStrictMode: true,
productionBrowserSourceMaps: true,
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "plus.unsplash.com",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
};
export default nextConfig;