diff --git a/src/app/robots.ts b/src/app/robots.ts index 6f7cea2..51ea0d2 100644 --- a/src/app/robots.ts +++ b/src/app/robots.ts @@ -1,5 +1,7 @@ import { MetadataRoute } from 'next'; +export const dynamic = 'force-static'; + export default function robots(): MetadataRoute.Robots { return { rules: { diff --git a/src/app/sitemap.ts b/src/app/sitemap.ts index 2daa064..d8a0a35 100644 --- a/src/app/sitemap.ts +++ b/src/app/sitemap.ts @@ -1,4 +1,6 @@ import { MetadataRoute } from 'next'; + +export const dynamic = 'force-static'; import { products } from '@/lib/products'; import { blogPosts } from '@/lib/blog'; diff --git a/src/components/HomeHeroSlider.module.css b/src/components/HomeHeroSlider.module.css index fd7db68..8dfb745 100644 --- a/src/components/HomeHeroSlider.module.css +++ b/src/components/HomeHeroSlider.module.css @@ -29,6 +29,8 @@ .maskContainer { position: absolute; inset: 0; + width: 100%; + height: 100%; clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%); overflow: hidden; }