From af12f6007af88632897636b8fc324e3d41d08929 Mon Sep 17 00:00:00 2001 From: Alaguraj0361 Date: Sat, 28 Mar 2026 11:40:58 +0530 Subject: [PATCH] add SEO configuration with sitemap and robots files and implement HomeHeroSlider component styles --- src/app/robots.ts | 2 ++ src/app/sitemap.ts | 2 ++ src/components/HomeHeroSlider.module.css | 2 ++ 3 files changed, 6 insertions(+) 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; }