add SEO configuration with sitemap and robots files and implement HomeHeroSlider component styles

This commit is contained in:
Alaguraj0361 2026-03-28 11:40:58 +05:30
parent 8cb0634936
commit af12f6007a
3 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,7 @@
import { MetadataRoute } from 'next';
export const dynamic = 'force-static';
export default function robots(): MetadataRoute.Robots {
return {
rules: {

View File

@ -1,4 +1,6 @@
import { MetadataRoute } from 'next';
export const dynamic = 'force-static';
import { products } from '@/lib/products';
import { blogPosts } from '@/lib/blog';

View File

@ -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;
}