From 2b5b5874e70ca14ffbd24a78cad59f9472690ddc Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 05:36:20 +0000 Subject: [PATCH 1/5] Update src/app/cart/page.tsx --- src/app/cart/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 77881b3..8f5c30e 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -53,7 +53,7 @@ export default function CartPage() { { text: "Proceed to Checkout", href: "/checkout" }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/beautiful-casual-woman-fashion-set_1203-7717.jpg" + imageSrc="http://img.b2bpic.net/free-photo/beautiful-casual-woman-fashion-set_1203-7717.jpg?_wi=2" imageAlt="Shopping cart banner" mediaAnimation="slide-up" testimonials={[ @@ -62,7 +62,7 @@ export default function CartPage() { handle: "@fashionlover", testimonial: "Best shoes I've ever owned. Quality and comfort are unmatched!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-her-40s-office-smiling-camera-joyfull-woman_482257-25805.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-her-40s-office-smiling-camera-joyfull-woman_482257-25805.jpg?_wi=3", imageAlt: "Sarah Johnson", }, { @@ -70,7 +70,7 @@ export default function CartPage() { handle: "@styleicon", testimonial: "Excellent selection and fast shipping. Highly recommended!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg?_wi=3", imageAlt: "Michael Chen", }, { @@ -78,7 +78,7 @@ export default function CartPage() { handle: "@trendsetters", testimonial: "Premium quality at affordable prices. Love this brand!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-content-pretty-businesswoman-glasses_1262-1740.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-content-pretty-businesswoman-glasses_1262-1740.jpg?_wi=3", imageAlt: "Emily Rodriguez", }, { @@ -86,7 +86,7 @@ export default function CartPage() { handle: "@shoppers_choice", testimonial: "Customer service is exceptional. Will definitely shop again!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=3", imageAlt: "David Kim", }, ]} @@ -119,7 +119,7 @@ export default function CartPage() { name: "Executive Leather Loafers", price: "₹4,999", variant: "Black, Brown", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-shoes_1150-10719.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-shoes_1150-10719.jpg?_wi=7", imageAlt: "Executive leather loafers", }, { @@ -127,7 +127,7 @@ export default function CartPage() { name: "Urban Comfort Sneakers", price: "₹3,499", variant: "White, Navy, Gray", - imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-woman-bwhite-shirt_1303-23902.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-woman-bwhite-shirt_1303-23902.jpg?_wi=5", imageAlt: "Urban comfort sneakers", }, { @@ -135,7 +135,7 @@ export default function CartPage() { name: "Elegant Formal Oxfords", price: "₹5,499", variant: "Black, Tan", - imageSrc: "http://img.b2bpic.net/free-photo/two-stylish-shop-assistants-elegantly-dressed-working-menswear-store_613910-19747.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/two-stylish-shop-assistants-elegantly-dressed-working-menswear-store_613910-19747.jpg?_wi=4", imageAlt: "Elegant formal oxfords", }, { @@ -143,7 +143,7 @@ export default function CartPage() { name: "Premium Running Shoes", price: "₹4,299", variant: "Red, Black, Blue", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-shoes_1150-10719.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-shoes_1150-10719.jpg?_wi=8", imageAlt: "Premium running shoes", }, ]} -- 2.49.1 From 0c186427ac43874be25f9ddbc336857288e2b9e2 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 05:36:21 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..babcd9a 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 { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Bata Fashion Shoe Corner - Premium Footwear Collection", + description: "Shop premium footwear at Bata Fashion Shoe Corner. Discover men's, women's, sports, and casual shoes with free shipping. Quality shoes at affordable prices.", + keywords: "shoes, footwear, men's shoes, women's shoes, casual shoes, sports shoes, online shoe store, premium footwear", + metadataBase: new URL("https://batafashionshoes.com"), + alternates: { + canonical: "https://batafashionshoes.com", + }, + openGraph: { + title: "Bata Fashion Shoe Corner - Premium Footwear", + description: "Discover our exclusive collection of premium shoes for every occasion. Shop men's, women's, sports, and casual footwear online.", + url: "https://batafashionshoes.com", + siteName: "Bata Fashion Shoe Corner", + type: "website", + images: [ + { + url: "https://batafashionshoes.com/og-image.jpg", + alt: "Bata Fashion Shoe Corner - Premium Footwear Collection", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Bata Fashion Shoe Corner - Premium Shoes", + description: "Shop premium footwear online. Men's, women's, sports, and casual shoes available.", + images: ["https://batafashionshoes.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}