Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-14 15:58:08 +00:00
6 changed files with 74 additions and 42 deletions

View File

@@ -71,7 +71,7 @@ export default function AboutPage() {
]}
buttonAnimation="slide-up"
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/full-length-shot-two-girls-showing-off-their-purchases-their-shopping-bags_1098-20555.jpg"
imageSrc="http://img.b2bpic.net/free-photo/full-length-shot-two-girls-showing-off-their-purchases-their-shopping-bags_1098-20555.jpg?_wi=2"
imageAlt="Swift Store"
mediaAnimation="opacity"
frameStyle="card"
@@ -88,7 +88,7 @@ export default function AboutPage() {
textboxLayout="default"
useInvertedBackground={false}
imagePosition="right"
imageSrc="http://img.b2bpic.net/free-photo/midsection-latin-male-owner-putting-food-container-grocery-store_662251-1341.jpg"
imageSrc="http://img.b2bpic.net/free-photo/midsection-latin-male-owner-putting-food-container-grocery-store_662251-1341.jpg?_wi=2"
imageAlt="Store interior"
mediaAnimation="opacity"
bulletPoints={[
@@ -132,21 +132,21 @@ export default function AboutPage() {
title: "Quality Products",
description:
"Fresh groceries, dairy and household items carefully selected",
imageSrc: "http://img.b2bpic.net/free-photo/blue-bowl-dried-organic-plums-placed-white-background-high-quality-photo_114579-75745.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blue-bowl-dried-organic-plums-placed-white-background-high-quality-photo_114579-75745.jpg?_wi=3",
imageAlt: "Quality products",
},
{
id: 2,
title: "Reasonable Pricing",
description: "Best prices in Srinagar for quality products",
imageSrc: "http://img.b2bpic.net/free-photo/undecided-woman-trying-find-product_329181-17358.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/undecided-woman-trying-find-product_329181-17358.jpg?_wi=3",
imageAlt: "Great prices",
},
{
id: 3,
title: "Friendly Staff",
description: "Courteous and helpful team ready to assist",
imageSrc: "http://img.b2bpic.net/free-photo/full-length-shot-two-girls-showing-off-their-purchases-their-shopping-bags_1098-20555.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-length-shot-two-girls-showing-off-their-purchases-their-shopping-bags_1098-20555.jpg?_wi=3",
imageAlt: "Friendly service",
},
{
@@ -154,7 +154,7 @@ export default function AboutPage() {
title: "Convenient Location",
description:
"Easy access on Main Road, Makhdoompora, Noushera",
imageSrc: "http://img.b2bpic.net/free-photo/midsection-latin-male-owner-putting-food-container-grocery-store_662251-1341.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/midsection-latin-male-owner-putting-food-container-grocery-store_662251-1341.jpg?_wi=3",
imageAlt: "Easy location",
},
]}

View File

@@ -84,7 +84,7 @@ export default function ContactPage() {
]}
buttonAnimation="slide-up"
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/full-length-shot-two-girls-showing-off-their-purchases-their-shopping-bags_1098-20555.jpg"
imageSrc="http://img.b2bpic.net/free-photo/full-length-shot-two-girls-showing-off-their-purchases-their-shopping-bags_1098-20555.jpg?_wi=4"
imageAlt="Contact us"
mediaAnimation="opacity"
frameStyle="card"
@@ -139,7 +139,7 @@ export default function ContactPage() {
description:
"Main Road, Makhdoompora, Noushera, Srinagar, J&K 190011",
imageSrc:
"http://img.b2bpic.net/free-photo/midsection-latin-male-owner-putting-food-container-grocery-store_662251-1341.jpg",
"http://img.b2bpic.net/free-photo/midsection-latin-male-owner-putting-food-container-grocery-store_662251-1341.jpg?_wi=4",
imageAlt: "Store location",
},
{
@@ -147,7 +147,7 @@ export default function ContactPage() {
title: "Phone",
description: "Call us: 060059 74492 - We're happy to help!",
imageSrc:
"http://img.b2bpic.net/free-photo/headshot-cute-girl-with-hair-bun-spending-lunch-break-restaurant-with-wooden-walls_273609-9037.jpg",
"http://img.b2bpic.net/free-photo/headshot-cute-girl-with-hair-bun-spending-lunch-break-restaurant-with-wooden-walls_273609-9037.jpg?_wi=4",
imageAlt: "Contact phone",
},
{
@@ -155,7 +155,7 @@ export default function ContactPage() {
title: "Hours",
description: "Open Daily: 8:00 AM to 10:00 PM",
imageSrc:
"http://img.b2bpic.net/free-photo/still-life-office-cleaning-process_23-2149343070.jpg",
"http://img.b2bpic.net/free-photo/still-life-office-cleaning-process_23-2149343070.jpg?_wi=3",
imageAlt: "Business hours",
},
{
@@ -164,7 +164,7 @@ export default function ContactPage() {
description:
"Message us anytime for quick inquiries and orders",
imageSrc:
"http://img.b2bpic.net/free-photo/milk-cheese-eggs-nuts-wooden-table-kitchen_23-2147972677.jpg",
"http://img.b2bpic.net/free-photo/milk-cheese-eggs-nuts-wooden-table-kitchen_23-2147972677.jpg?_wi=3",
imageAlt: "WhatsApp contact",
},
]}

View File

@@ -1,24 +1,54 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Swift Departmental Store - Groceries & Essentials Srinagar",
description: "Quality groceries, dairy & household essentials in Srinagar. 4.4★ rated store. Fresh daily products at best prices. Open until 10 PM.",
keywords: "departmental store Srinagar, grocery store Noushera, daily essentials Srinagar, household items, dairy products, best prices",
metadataBase: new URL("https://swiftstore.local"),
alternates: {
canonical: "https://swiftstore.local",
},
openGraph: {
title: "Swift Departmental Store - Your Trusted Grocery Store in Srinagar",
description: "Quality groceries, dairy products & household essentials. 4.4★ rated by 88+ customers. Fresh daily products at reasonable prices.",
url: "https://swiftstore.local",
siteName: "Swift Departmental Store",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Swift Departmental Store - Srinagar",
description: "Quality groceries and household essentials. Best prices. Open daily until 10 PM.",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -72,7 +72,7 @@ export default function HomePage() {
]}
buttonAnimation="slide-up"
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/midsection-latin-male-owner-putting-food-container-grocery-store_662251-1341.jpg"
imageSrc="http://img.b2bpic.net/free-photo/midsection-latin-male-owner-putting-food-container-grocery-store_662251-1341.jpg?_wi=1"
imageAlt="Swift Departmental Store entrance"
mediaAnimation="opacity"
frameStyle="card"
@@ -120,7 +120,7 @@ export default function HomePage() {
price: "₹599-₹1299",
rating: 5,
reviewCount: "24",
imageSrc: "http://img.b2bpic.net/free-photo/blue-bowl-dried-organic-plums-placed-white-background-high-quality-photo_114579-75745.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blue-bowl-dried-organic-plums-placed-white-background-high-quality-photo_114579-75745.jpg?_wi=1",
imageAlt: "Premium Kalmi Dates",
},
{
@@ -130,7 +130,7 @@ export default function HomePage() {
price: "₹40-₹250",
rating: 5,
reviewCount: "32",
imageSrc: "http://img.b2bpic.net/free-photo/milk-cheese-eggs-nuts-wooden-table-kitchen_23-2147972677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/milk-cheese-eggs-nuts-wooden-table-kitchen_23-2147972677.jpg?_wi=1",
imageAlt: "Fresh Dairy Products",
},
{
@@ -140,7 +140,7 @@ export default function HomePage() {
price: "₹20-₹500",
rating: 5,
reviewCount: "18",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-cleaning-process_23-2149343070.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-cleaning-process_23-2149343070.jpg?_wi=1",
imageAlt: "Household Essentials",
},
]}
@@ -159,7 +159,7 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={true}
imagePosition="right"
imageSrc="http://img.b2bpic.net/free-photo/full-length-shot-two-girls-showing-off-their-purchases-their-shopping-bags_1098-20555.jpg"
imageSrc="http://img.b2bpic.net/free-photo/full-length-shot-two-girls-showing-off-their-purchases-their-shopping-bags_1098-20555.jpg?_wi=1"
imageAlt="Swift Store team"
mediaAnimation="opacity"
bulletPoints={[
@@ -211,7 +211,7 @@ export default function HomePage() {
role: "Homemaker",
company: "Regular Customer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/headshot-cute-girl-with-hair-bun-spending-lunch-break-restaurant-with-wooden-walls_273609-9037.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/headshot-cute-girl-with-hair-bun-spending-lunch-break-restaurant-with-wooden-walls_273609-9037.jpg?_wi=1",
imageAlt: "Fatima Khan",
},
{
@@ -220,7 +220,7 @@ export default function HomePage() {
role: "Office Worker",
company: "Daily Shopper",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-leisure-concept_273609-6599.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-leisure-concept_273609-6599.jpg?_wi=1",
imageAlt: "Ahmed Hassan",
},
{
@@ -229,7 +229,7 @@ export default function HomePage() {
role: "Student",
company: "Frequent Visitor",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-shopping-bags_329181-18722.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-shopping-bags_329181-18722.jpg?_wi=1",
imageAlt: "Aisha Malik",
},
{
@@ -238,7 +238,7 @@ export default function HomePage() {
role: "Business Owner",
company: "Bulk Buyer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=1",
imageAlt: "Rashid Ali",
},
{
@@ -247,7 +247,7 @@ export default function HomePage() {
role: "Housewife",
company: "Loyal Customer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1",
imageAlt: "Noor Fatima",
},
{
@@ -256,7 +256,7 @@ export default function HomePage() {
role: "Retired",
company: "Weekly Visitor",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cute-girl-with-shopping-bag-city_1157-21296.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cute-girl-with-shopping-bag-city_1157-21296.jpg?_wi=1",
imageAlt: "Imran Sheikh",
},
]}

View File

@@ -47,7 +47,7 @@ export default function ProductsPage() {
buttons={[{ text: "Call for Availability", href: "tel:06005974492" }]}
buttonAnimation="slide-up"
layoutOrder="reverse"
imageSrc="http://img.b2bpic.net/free-photo/undecided-woman-trying-find-product_329181-17358.jpg"
imageSrc="http://img.b2bpic.net/free-photo/undecided-woman-trying-find-product_329181-17358.jpg?_wi=1"
imageAlt="Product selection"
mediaAnimation="opacity"
frameStyle="card"
@@ -68,28 +68,28 @@ export default function ProductsPage() {
id: 1,
title: "Groceries",
description: "Rice, flour, spices, oils and other essential grocery items",
imageSrc: "http://img.b2bpic.net/free-photo/undecided-woman-trying-find-product_329181-17358.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/undecided-woman-trying-find-product_329181-17358.jpg?_wi=2",
imageAlt: "Grocery items",
},
{
id: 2,
title: "Dairy Products",
description: "Fresh milk, yogurt, paneer and other dairy essentials",
imageSrc: "http://img.b2bpic.net/free-photo/milk-cheese-eggs-nuts-wooden-table-kitchen_23-2147972677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/milk-cheese-eggs-nuts-wooden-table-kitchen_23-2147972677.jpg?_wi=2",
imageAlt: "Dairy products",
},
{
id: 3,
title: "Household Essentials",
description: "Cleaning supplies, detergents and daily household items",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-cleaning-process_23-2149343070.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-cleaning-process_23-2149343070.jpg?_wi=2",
imageAlt: "Household essentials",
},
{
id: 4,
title: "Dry Fruits & Dates",
description: "Premium quality Kalmi dates and other dried fruits",
imageSrc: "http://img.b2bpic.net/free-photo/blue-bowl-dried-organic-plums-placed-white-background-high-quality-photo_114579-75745.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blue-bowl-dried-organic-plums-placed-white-background-high-quality-photo_114579-75745.jpg?_wi=2",
imageAlt: "Dry fruits and dates",
},
]}

View File

@@ -72,7 +72,7 @@ export default function ReviewsPage() {
]}
buttonAnimation="slide-up"
layoutOrder="reverse"
imageSrc="http://img.b2bpic.net/free-photo/headshot-cute-girl-with-hair-bun-spending-lunch-break-restaurant-with-wooden-walls_273609-9037.jpg"
imageSrc="http://img.b2bpic.net/free-photo/headshot-cute-girl-with-hair-bun-spending-lunch-break-restaurant-with-wooden-walls_273609-9037.jpg?_wi=2"
imageAlt="Happy customer"
mediaAnimation="opacity"
frameStyle="card"
@@ -97,7 +97,7 @@ export default function ReviewsPage() {
role: "Best place for shopping daily use items",
company: "Homemaker",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/headshot-cute-girl-with-hair-bun-spending-lunch-break-restaurant-with-wooden-walls_273609-9037.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/headshot-cute-girl-with-hair-bun-spending-lunch-break-restaurant-with-wooden-walls_273609-9037.jpg?_wi=3",
imageAlt: "Fatima Khan",
},
{
@@ -106,7 +106,7 @@ export default function ReviewsPage() {
role: "Rates are good and staff is friendly",
company: "Regular Customer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-leisure-concept_273609-6599.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-leisure-concept_273609-6599.jpg?_wi=2",
imageAlt: "Ahmed Hassan",
},
{
@@ -115,7 +115,7 @@ export default function ReviewsPage() {
role: "Best customer service and reasonable price",
company: "Frequent Visitor",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-shopping-bags_329181-18722.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-shopping-bags_329181-18722.jpg?_wi=2",
imageAlt: "Aisha Malik",
},
{
@@ -124,7 +124,7 @@ export default function ReviewsPage() {
role: "Fresh products every time I visit",
company: "Bulk Buyer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=2",
imageAlt: "Rashid Ali",
},
{
@@ -133,7 +133,7 @@ export default function ReviewsPage() {
role: "Very satisfied with quality and prices",
company: "Loyal Shopper",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2",
imageAlt: "Noor Fatima",
},
{
@@ -142,7 +142,7 @@ export default function ReviewsPage() {
role: "My go-to store for all daily needs",
company: "Weekly Visitor",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cute-girl-with-shopping-bag-city_1157-21296.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cute-girl-with-shopping-bag-city_1157-21296.jpg?_wi=2",
imageAlt: "Imran Sheikh",
},
]}