Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-06 12:32:31 +00:00

View File

@@ -6,7 +6,7 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin
import SplitAbout from "@/components/sections/about/SplitAbout";
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Heart, MapPin, CheckCircle, MessageSquare, Award, Users, Sparkles } from "lucide-react";
import { Heart, MapPin, CheckCircle, MessageSquare, Award, Users, Sparkles, ShoppingBag } from "lucide-react";
export default function AboutPage() {
const navItems = [
@@ -20,8 +20,7 @@ export default function AboutPage() {
const footerColumns = [
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Shop", href: "/shop" },
{ label: "About Us", href: "/about" },
@@ -29,8 +28,7 @@ export default function AboutPage() {
],
},
{
title: "Categories",
items: [
title: "Categories", items: [
{ label: "Men's Shoes", href: "/shop?category=mens" },
{ label: "Women's Footwear", href: "/shop?category=womens" },
{ label: "Kids Shoes", href: "/shop?category=kids" },
@@ -38,8 +36,7 @@ export default function AboutPage() {
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{ label: "📞 Call Us: +91 9876543210", href: "tel:+919876543210" },
{ label: "💬 WhatsApp: Message Us", href: "https://wa.me/919876543210" },
{ label: "📍 Get Directions", href: "https://maps.google.com/?q=Halol+Godhra+Road+Halol+Gujarat" },
@@ -66,9 +63,7 @@ export default function AboutPage() {
brandName="Shoe World"
navItems={navItems}
button={{
text: "Call Now",
href: "tel:+919876543210",
}}
text: "Call Now", href: "tel:+919876543210"}}
className="fixed top-6 left-6 right-6 z-50"
buttonClassName="bg-red-600 hover:bg-red-700 text-white px-6 py-3 rounded-full font-semibold transition-all"
/>
@@ -81,25 +76,13 @@ export default function AboutPage() {
tagAnimation="slide-up"
metrics={[
{
id: "1",
value: "15+ Years",
description: "Serving the local community with quality footwear",
},
id: "1", value: "15+ Years", description: "Serving the local community with quality footwear"},
{
id: "2",
value: "1000+",
description: "Happy customers from Halol and nearby areas",
},
id: "2", value: "1000+", description: "Happy customers from Halol and nearby areas"},
{
id: "3",
value: "500+",
description: "Premium shoe styles and brands in stock",
},
id: "3", value: "500+", description: "Premium shoe styles and brands in stock"},
{
id: "4",
value: "9 PM",
description: "Open daily to serve your shopping needs",
},
id: "4", value: "9 PM", description: "Open daily to serve your shopping needs"},
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -115,38 +98,26 @@ export default function AboutPage() {
tagAnimation="slide-up"
buttons={[
{
text: "Get Directions",
href: "https://maps.google.com/?q=Shoe+World+Exclusive+Halol",
},
text: "Get Directions", href: "https://maps.google.com/?q=Shoe+World+Exclusive+Halol"},
{
text: "Call Us",
href: "tel:+919876543210",
},
text: "Call Us", href: "tel:+919876543210"},
]}
buttonAnimation="slide-up"
bulletPoints={[
{
title: "Wide Variety",
description: "Men's, women's, kids' shoes, and more. Casual, formal, sports—we have it all.",
icon: ShoppingBag,
title: "Wide Variety", description: "Men's, women's, kids' shoes, and more. Casual, formal, sports—we have it all.", icon: ShoppingBag,
},
{
title: "Local Convenience",
description: "Easy in-store shopping experience with friendly, knowledgeable staff assistance.",
icon: MapPin,
title: "Local Convenience", description: "Easy in-store shopping experience with friendly, knowledgeable staff assistance.", icon: MapPin,
},
{
title: "Quality & Comfort",
description: "Premium brands and styles selected for durability and everyday wearability.",
icon: CheckCircle,
title: "Quality & Comfort", description: "Premium brands and styles selected for durability and everyday wearability.", icon: CheckCircle,
},
{
title: "Quick Support",
description: "Phone and WhatsApp enquiry support for sizes, availability, and pricing info.",
icon: MessageSquare,
title: "Quick Support", description: "Phone and WhatsApp enquiry support for sizes, availability, and pricing info.", icon: MessageSquare,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/men-s-shoes-elegant-clothes-holiday-theme-wedding_78826-2242.jpg?_wi=6"
imageSrc="http://img.b2bpic.net/free-photo/men-s-shoes-elegant-clothes-holiday-theme-wedding_78826-2242.jpg"
imageAlt="Shoe World Exclusive store interior"
mediaAnimation="slide-up"
imagePosition="right"
@@ -157,7 +128,7 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/men-s-shoes-elegant-clothes-holiday-theme-wedding_78826-2242.jpg?_wi=7"
imageSrc="http://img.b2bpic.net/free-photo/men-s-shoes-elegant-clothes-holiday-theme-wedding_78826-2242.jpg"
imageAlt="Shoe World Exclusive store ambiance"
logoText="Shoe World Exclusive"
copyrightText="© 2025 Shoe World Exclusive. All rights reserved. Proudly serving Halol, Gujarat."
@@ -167,24 +138,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
function ShoppingBag() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="9" cy="21" r="1" />
<circle cx="20" cy="21" r="1" />
<path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" />
</svg>
);
}