diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4498897..7a761b3 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -57,7 +57,7 @@ export default function AboutPage() { }, ]} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/young-male-cook-blue-apron-shirt_176474-49854.jpg" + imageSrc="http://img.b2bpic.net/free-photo/young-male-cook-blue-apron-shirt_176474-49854.jpg?_wi=2" imageAlt="Friendly store owner at DAUSA Kirana" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -78,7 +78,7 @@ export default function AboutPage() { value: "Excellence", title: "Premium Quality", description: "We source only the finest products for our customers", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-looking-product_23-2149081059.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-looking-product_23-2149081059.jpg?_wi=2", imageAlt: "Quality products on display", }, { @@ -86,7 +86,7 @@ export default function AboutPage() { value: "Community", title: "Local Connection", description: "We deeply value our relationship with Jaipur families", - imageSrc: "http://img.b2bpic.net/free-photo/owner-brings-fresh-veggies-shop_482257-76758.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/owner-brings-fresh-veggies-shop_482257-76758.jpg?_wi=3", imageAlt: "Community focused service", }, { @@ -94,7 +94,7 @@ export default function AboutPage() { value: "Trust", title: "Reliable Service", description: "Years of consistent, honest business practices", - imageSrc: "http://img.b2bpic.net/free-photo/fresh-cucumbers-red-radishes-pepper-stone-table-high-quality-photo_114579-27093.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/fresh-cucumbers-red-radishes-pepper-stone-table-high-quality-photo_114579-27093.jpg?_wi=2", imageAlt: "Fresh reliable products", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..d6b30d6 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 { Nunito_Sans } 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 { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "DAUSA Kirana Store - Best Grocery Store in Jaipur", + description: "Quality groceries at affordable prices in Jaipur. DAUSA Kirana Store offers rice, spices, flour, oils, and household essentials. Located in Tonk Phatak. Call 09772220100.", + keywords: "Best kirana store in Jaipur, grocery store Tonk Phatak Jaipur, affordable groceries, local grocery Jaipur, DAUSA Kirana", + metadataBase: new URL("https://dausagrocery.com"), + alternates: { + canonical: "https://dausagrocery.com", + }, + openGraph: { + title: "DAUSA Kirana Store - Your Trusted Neighborhood Grocery Store", + description: "Quality products at reasonable prices. Serving Jaipur families for years with fresh groceries, spices, and household essentials.", + url: "https://dausagrocery.com", + siteName: "DAUSA Kirana Store", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/owner-brings-fresh-veggies-shop_482257-76758.jpg", + alt: "DAUSA Kirana Store interior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "DAUSA Kirana Store - Best Grocery Store in Jaipur", + description: "Quality groceries at affordable prices. Your trusted neighborhood store.", + images: ["http://img.b2bpic.net/free-photo/owner-brings-fresh-veggies-shop_482257-76758.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}