From 63dd8d390dd49ae3f3de7af31fe78aa4b35f6e7f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 07:08:09 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5a30b28..e401ccd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -71,7 +71,7 @@ export default function AboutPage() { tag="Featured Categories" tagIcon={ShoppingBag} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg" + imageSrc="http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg?_wi=2" imageAlt="Store interior with organized shoes" mediaAnimation="slide-up" accordionItems={[ From b91f70534e356030615534fed06f7bc19228524a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 07:08:09 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..b9cdf01 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Saikrupa Footwear Daman - Best Shoes in Town", + description: "Shop quality and affordable shoes for men, women, and kids at Saikrupa Footwear Daman. 4.0 rating. Open daily until 8 PM.", + keywords: "footwear shop Daman, shoe store Daman, best shoes Daman, affordable footwear, men's shoes, women's shoes, kids shoes", + metadataBase: new URL("https://saikrupafootwear.com"), + alternates: { + canonical: "https://saikrupafootwear.com", + }, + openGraph: { + title: "Saikrupa Footwear Daman - Quality Shoes at Best Prices", + description: "Discover affordable, stylish shoes for the whole family. Shop now at Daman's trusted footwear store.", + url: "https://saikrupafootwear.com", + siteName: "Saikrupa Footwear", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/legs-female-shoppers_23-2147688683.jpg", + alt: "Saikrupa Footwear Store", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Saikrupa Footwear - Best Shoes in Daman", + description: "Quality footwear for men, women, and kids. Affordable prices, trusted by locals.", + images: ["http://img.b2bpic.net/free-photo/legs-female-shoppers_23-2147688683.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}