Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-14 05:06:34 +00:00
5 changed files with 81 additions and 42 deletions

View File

@@ -84,7 +84,7 @@ export default function AboutPage() {
background={{ variant: "radial-gradient" }}
tag="Our Story"
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/young-male-performer-dancing-subway-station_23-2149344086.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-male-performer-dancing-subway-station_23-2149344086.jpg?_wi=2"
imageAlt="Payal Footwear store entrance"
mediaAnimation="slide-up"
className="relative overflow-hidden"
@@ -130,7 +130,7 @@ export default function AboutPage() {
name: "Rajesh Patel",
role: "Store Owner & Manager",
description: "With over a decade of experience in the footwear industry, Rajesh is dedicated to providing the best service and quality shoes at affordable prices.",
imageSrc: "http://img.b2bpic.net/free-photo/cute-smiling-curly-woman-lean-wall_176420-16738.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cute-smiling-curly-woman-lean-wall_176420-16738.jpg?_wi=2",
imageAlt: "Rajesh Patel store owner",
},
{
@@ -138,7 +138,7 @@ export default function AboutPage() {
name: "Priya Verma",
role: "Senior Sales Associate",
description: "Priya brings expertise in helping customers find the perfect fit and style. She specializes in women's and kids' footwear.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-takeaway-food-paper-bags_23-2149025861.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-takeaway-food-paper-bags_23-2149025861.jpg?_wi=2",
imageAlt: "Priya Verma sales associate",
},
{
@@ -146,7 +146,7 @@ export default function AboutPage() {
name: "Vikram Singh",
role: "Sales Associate",
description: "Vikram helps customers with men's footwear selection. His friendly approach and product knowledge ensure customer satisfaction.",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg?_wi=2",
imageAlt: "Vikram Singh sales associate",
},
]}

View File

@@ -89,7 +89,7 @@ export default function ContactPage() {
},
]}
buttonAnimation="blur-reveal"
imageSrc="http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg"
imageSrc="http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg?_wi=4"
imageAlt="Store location"
mediaAnimation="slide-up"
className="relative overflow-hidden"
@@ -128,7 +128,7 @@ export default function ContactPage() {
required: true,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg"
imageSrc="http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg?_wi=5"
imageAlt="Store location"
mediaAnimation="slide-up"
mediaPosition="left"

View File

@@ -1,29 +1,66 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_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 { Manrope } from "next/font/google";
import { DM_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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Payal Footwear - Quality Shoes at Affordable Prices in Bharuch",
description: "Shop quality shoes for men, women, and kids at affordable prices in Bharuch. Visit Payal Footwear near Railway Station. Open until 9 PM daily. Call now for offers!",
keywords: "shoe store Bharuch, affordable shoes, men's shoes, women's shoes, kids shoes, quality footwear, local shoe shop",
metadataBase: new URL("https://payalfootwear.com"),
alternates: {
canonical: "https://payalfootwear.com",
},
openGraph: {
title: "Payal Footwear - Your Trusted Shoe Store in Bharuch",
description: "Discover quality shoes at unbeatable prices. Men's, women's, and kids footwear. Located near Railway Station, Bharuch.",
siteName: "Payal Footwear",
type: "website",
images: [
{
url: "https://payalfootwear.com/og-image.jpg",
alt: "Payal Footwear store front and shoe collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "Payal Footwear - Quality Shoes at Best Prices",
description: "Shop quality footwear for the entire family at Payal Footwear, Bharuch. Affordable prices, expert service!",
images: ["https://payalfootwear.com/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -32,7 +69,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +83,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -100,7 +100,7 @@ export default function HomePage() {
},
]}
buttonAnimation="blur-reveal"
imageSrc="http://img.b2bpic.net/free-photo/young-male-performer-dancing-subway-station_23-2149344086.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-male-performer-dancing-subway-station_23-2149344086.jpg?_wi=1"
imageAlt="Payal Footwear store interior with quality shoe displays"
mediaAnimation="slide-up"
className="relative overflow-hidden"
@@ -149,11 +149,11 @@ export default function HomePage() {
icon: CheckCircle,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991543.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991543.jpg?_wi=1",
imageAlt: "Premium quality shoe display shelf",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991543.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991543.jpg?_wi=2",
imageAlt: "Quality assurance badge",
},
],
@@ -164,11 +164,11 @@ export default function HomePage() {
icon: Zap,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-smartphone-with-roller-skates_23-2148373003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-smartphone-with-roller-skates_23-2148373003.jpg?_wi=1",
imageAlt: "Affordable price tags on shoes",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-smartphone-with-roller-skates_23-2148373003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-smartphone-with-roller-skates_23-2148373003.jpg?_wi=2",
imageAlt: "Budget-friendly pricing",
},
],
@@ -179,11 +179,11 @@ export default function HomePage() {
icon: Award,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/young-fashion-consultant-helping-trying-boots-pretty-smiling-asian-girl-modern-showroom_574295-2078.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-fashion-consultant-helping-trying-boots-pretty-smiling-asian-girl-modern-showroom_574295-2078.jpg?_wi=1",
imageAlt: "Professional customer service team",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/young-fashion-consultant-helping-trying-boots-pretty-smiling-asian-girl-modern-showroom_574295-2078.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-fashion-consultant-helping-trying-boots-pretty-smiling-asian-girl-modern-showroom_574295-2078.jpg?_wi=2",
imageAlt: "5-star service rating",
},
],
@@ -194,11 +194,11 @@ export default function HomePage() {
icon: Shield,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg?_wi=1",
imageAlt: "Store location on Bharuch map",
},
{
imageSrc: "http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg?_wi=2",
imageAlt: "Location pin icon",
},
],
@@ -268,7 +268,7 @@ export default function HomePage() {
name: "Rajesh Kumar",
handle: "Local Business Owner",
testimonial: "Great quality shoes at affordable prices! The staff was very helpful in finding the right fit. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/cute-smiling-curly-woman-lean-wall_176420-16738.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cute-smiling-curly-woman-lean-wall_176420-16738.jpg?_wi=1",
imageAlt: "Rajesh Kumar satisfied customer",
icon: Star,
},
@@ -277,7 +277,7 @@ export default function HomePage() {
name: "Priya Sharma",
handle: "Home Maker",
testimonial: "Best place to buy shoes for the entire family. They have options for kids too. Open till 9 PM, very convenient!",
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-takeaway-food-paper-bags_23-2149025861.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-takeaway-food-paper-bags_23-2149025861.jpg?_wi=1",
imageAlt: "Priya Sharma happy customer",
icon: Star,
},
@@ -286,7 +286,7 @@ export default function HomePage() {
name: "Amit Patel",
handle: "Professional",
testimonial: "Excellent selection of formal and casual shoes. The quality is premium but prices are very reasonable. Best in Bharuch!",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg?_wi=1",
imageAlt: "Amit Patel satisfied customer",
icon: Star,
},
@@ -340,21 +340,21 @@ export default function HomePage() {
id: "mens-shoes",
name: "Men's Shoes",
price: "From ₹500",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107557.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107557.jpg?_wi=1",
imageAlt: "Men's shoe collection",
},
{
id: "womens-shoes",
name: "Women's Shoes",
price: "From ₹450",
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-white-woman-sweater-sitting-street-city-center-stylish-sunglasses-autumn-mood_273443-3432.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-white-woman-sweater-sitting-street-city-center-stylish-sunglasses-autumn-mood_273443-3432.jpg?_wi=1",
imageAlt: "Women's shoe collection",
},
{
id: "kids-shoes",
name: "Kids Shoes",
price: "From ₹350",
imageSrc: "http://img.b2bpic.net/free-photo/newborn-concept-with-four-pairs-shoes_23-2147665671.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/newborn-concept-with-four-pairs-shoes_23-2147665671.jpg?_wi=1",
imageAlt: "Kids shoe collection",
},
]}
@@ -400,7 +400,7 @@ export default function HomePage() {
required: false,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg"
imageSrc="http://img.b2bpic.net/free-vector/real-estate-business-profits_24877-52926.jpg?_wi=3"
imageAlt="Store location map"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -89,7 +89,7 @@ export default function ProductsPage() {
},
]}
buttonAnimation="blur-reveal"
imageSrc="http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991543.jpg"
imageSrc="http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991543.jpg?_wi=3"
imageAlt="Shoe collection display"
mediaAnimation="slide-up"
className="relative overflow-hidden"
@@ -108,63 +108,63 @@ export default function ProductsPage() {
id: "mens-formal",
name: "Men's Formal Shoes",
price: "₹699 - ₹1,299",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107557.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107557.jpg?_wi=2",
imageAlt: "Men's formal shoe collection",
},
{
id: "mens-casual",
name: "Men's Casual Shoes",
price: "₹499 - ₹999",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107557.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107557.jpg?_wi=3",
imageAlt: "Men's casual shoes",
},
{
id: "mens-sports",
name: "Men's Sports Shoes",
price: "₹599 - ₹1,199",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107557.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-accessories_23-2148107557.jpg?_wi=4",
imageAlt: "Men's sports shoes",
},
{
id: "womens-casual",
name: "Women's Casual Shoes",
price: "₹449 - ₹899",
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-white-woman-sweater-sitting-street-city-center-stylish-sunglasses-autumn-mood_273443-3432.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-white-woman-sweater-sitting-street-city-center-stylish-sunglasses-autumn-mood_273443-3432.jpg?_wi=2",
imageAlt: "Women's casual shoes",
},
{
id: "womens-formal",
name: "Women's Formal Shoes",
price: "₹549 - ₹1,099",
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-white-woman-sweater-sitting-street-city-center-stylish-sunglasses-autumn-mood_273443-3432.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-white-woman-sweater-sitting-street-city-center-stylish-sunglasses-autumn-mood_273443-3432.jpg?_wi=3",
imageAlt: "Women's formal shoes",
},
{
id: "womens-sports",
name: "Women's Sports Shoes",
price: "₹599 - ₹1,199",
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-white-woman-sweater-sitting-street-city-center-stylish-sunglasses-autumn-mood_273443-3432.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-white-woman-sweater-sitting-street-city-center-stylish-sunglasses-autumn-mood_273443-3432.jpg?_wi=4",
imageAlt: "Women's sports shoes",
},
{
id: "kids-school",
name: "Kids School Shoes",
price: "₹299 - ₹599",
imageSrc: "http://img.b2bpic.net/free-photo/newborn-concept-with-four-pairs-shoes_23-2147665671.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/newborn-concept-with-four-pairs-shoes_23-2147665671.jpg?_wi=2",
imageAlt: "Kids school shoes",
},
{
id: "kids-casual",
name: "Kids Casual Shoes",
price: "₹349 - ₹699",
imageSrc: "http://img.b2bpic.net/free-photo/newborn-concept-with-four-pairs-shoes_23-2147665671.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/newborn-concept-with-four-pairs-shoes_23-2147665671.jpg?_wi=3",
imageAlt: "Kids casual shoes",
},
{
id: "kids-sports",
name: "Kids Sports Shoes",
price: "₹399 - ₹799",
imageSrc: "http://img.b2bpic.net/free-photo/newborn-concept-with-four-pairs-shoes_23-2147665671.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/newborn-concept-with-four-pairs-shoes_23-2147665671.jpg?_wi=4",
imageAlt: "Kids sports shoes",
},
]}
@@ -209,7 +209,7 @@ export default function ProductsPage() {
required: false,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/young-fashion-consultant-helping-trying-boots-pretty-smiling-asian-girl-modern-showroom_574295-2078.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-fashion-consultant-helping-trying-boots-pretty-smiling-asian-girl-modern-showroom_574295-2078.jpg?_wi=3"
imageAlt="Customer service team helping"
mediaAnimation="slide-up"
mediaPosition="right"