Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -53,11 +53,11 @@ export default function HomePage() {
|
||||
background={{ variant: "glowing-orb" }}
|
||||
leftCarouselItems={[
|
||||
{
|
||||
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=1",
|
||||
imageAlt: "Store interior with organized shelves",
|
||||
},
|
||||
{
|
||||
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=1",
|
||||
imageAlt: "Fresh vegetables and produce display",
|
||||
},
|
||||
{
|
||||
@@ -118,7 +118,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="Friendly store owner at DAUSA Kirana"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
@@ -138,42 +138,42 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Rice & Grains",
|
||||
description: "Premium quality rice, wheat, and various grains for daily cooking needs",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-rice-milk-rice-grains-arranged-weathered-background_23-2148097269.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-rice-milk-rice-grains-arranged-weathered-background_23-2148097269.jpg?_wi=1",
|
||||
imageAlt: "Rice and grains collection",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Pulses & Dal",
|
||||
description: "Fresh and clean pulses, lentils, and dals in various varieties",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colored-vegetables-sliced-onions-green-bell-pepper-tomatoes-brown-desk-grey_140725-13277.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colored-vegetables-sliced-onions-green-bell-pepper-tomatoes-brown-desk-grey_140725-13277.jpg?_wi=1",
|
||||
imageAlt: "Pulses and dal varieties",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Flour & Atta",
|
||||
description: "Quality wheat flour, gram flour, and specialty flours for baking",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-donated-food_23-2148613172.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-donated-food_23-2148613172.jpg?_wi=1",
|
||||
imageAlt: "Flour and atta selection",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Spices",
|
||||
description: "Authentic Indian spices and masala blends for flavorful cooking",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-oil-dark-surface_140725-75296.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-oil-dark-surface_140725-75296.jpg?_wi=1",
|
||||
imageAlt: "Spices and masala collection",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Cooking Oil",
|
||||
description: "Premium cooking oils including mustard, coconut, and vegetable oil",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-kombucha-arrangement-still-life_52683-127474.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-kombucha-arrangement-still-life_52683-127474.jpg?_wi=1",
|
||||
imageAlt: "Cooking oils selection",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Snacks",
|
||||
description: "Wide variety of healthy and tasty snack options for all ages",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/variety-snacks-glass-beer-wooden-piece_114579-57995.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/variety-snacks-glass-beer-wooden-piece_114579-57995.jpg?_wi=1",
|
||||
imageAlt: "Snacks variety",
|
||||
},
|
||||
]}
|
||||
@@ -257,7 +257,7 @@ export default function HomePage() {
|
||||
value: "Quality",
|
||||
title: "Premium Products",
|
||||
description: "Fresh, authentic, and affordable groceries",
|
||||
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=1",
|
||||
imageAlt: "Store quality products",
|
||||
},
|
||||
{
|
||||
@@ -265,7 +265,7 @@ export default function HomePage() {
|
||||
value: "Service",
|
||||
title: "Friendly Staff",
|
||||
description: "Always ready to help and assist customers",
|
||||
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=2",
|
||||
imageAlt: "Friendly store staff",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -55,42 +55,42 @@ export default function ProductsPage() {
|
||||
id: 1,
|
||||
title: "Rice & Grains",
|
||||
description: "Premium quality rice, wheat, and various grains for daily cooking needs",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-rice-milk-rice-grains-arranged-weathered-background_23-2148097269.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-rice-milk-rice-grains-arranged-weathered-background_23-2148097269.jpg?_wi=2",
|
||||
imageAlt: "premium basmati rice bags packages",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Pulses & Dal",
|
||||
description: "Fresh and clean pulses, lentils, and dals in various varieties",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colored-vegetables-sliced-onions-green-bell-pepper-tomatoes-brown-desk-grey_140725-13277.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colored-vegetables-sliced-onions-green-bell-pepper-tomatoes-brown-desk-grey_140725-13277.jpg?_wi=2",
|
||||
imageAlt: "Indian pulses lentils dal varieties",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Flour & Atta",
|
||||
description: "Quality wheat flour, gram flour, and specialty flours for baking",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-donated-food_23-2148613172.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-donated-food_23-2148613172.jpg?_wi=2",
|
||||
imageAlt: "wheat flour atta bags packages",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Spices",
|
||||
description: "Authentic Indian spices and masala blends for flavorful cooking",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-oil-dark-surface_140725-75296.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-oil-dark-surface_140725-75296.jpg?_wi=2",
|
||||
imageAlt: "Indian spices masala mix authentic",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Cooking Oil",
|
||||
description: "Premium cooking oils including mustard, coconut, and vegetable oil",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-kombucha-arrangement-still-life_52683-127474.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-kombucha-arrangement-still-life_52683-127474.jpg?_wi=2",
|
||||
imageAlt: "pure cooking oils mustard coconut vegetable",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Snacks",
|
||||
description: "Wide variety of healthy and tasty snack options for all ages",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/variety-snacks-glass-beer-wooden-piece_114579-57995.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/variety-snacks-glass-beer-wooden-piece_114579-57995.jpg?_wi=2",
|
||||
imageAlt: "Indian snacks namkeen chakli chivda",
|
||||
},
|
||||
]}
|
||||
@@ -114,7 +114,7 @@ export default function ProductsPage() {
|
||||
value: "Quality",
|
||||
title: "Premium Products",
|
||||
description: "Fresh, authentic, and affordable groceries",
|
||||
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=3",
|
||||
imageAlt: "grocery store well organized quality products",
|
||||
},
|
||||
{
|
||||
@@ -122,7 +122,7 @@ export default function ProductsPage() {
|
||||
value: "Service",
|
||||
title: "Friendly Staff",
|
||||
description: "Always ready to help and assist customers",
|
||||
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=4",
|
||||
imageAlt: "friendly store owner shopkeeper portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user