diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e4c54a0..d2c0717 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -57,7 +57,7 @@ export default function AboutPage() { description="Your trusted marketplace connecting quality sellers with discerning buyers. We empower entrepreneurs and deliver excellence." subdescription="Founded with a vision to revolutionize e-commerce in India, G&S STORE combines technology, trust, and innovation to create a seamless shopping experience for millions." icon={Shield} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/professional-marketplace-headquarters-im-1774122543781-db5e97ee.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/professional-marketplace-headquarters-im-1774122543781-db5e97ee.png?_wi=2" imageAlt="G&S Store marketplace" mediaAnimation="slide-up" useInvertedBackground={false} @@ -75,14 +75,14 @@ export default function AboutPage() { id: "founder-1", name: "Gaurav Sahebrav Saswade", role: "Founder & CEO", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/professional-portrait-of-a-confident-bus-1774122542562-aa3f9d81.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/professional-portrait-of-a-confident-bus-1774122542562-aa3f9d81.png?_wi=2", imageAlt: "Gaurav Sahebrav Saswade", }, { id: "founder-2", name: "Shushant Kisan Waghmare", role: "Director & Co-Founder", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/professional-portrait-of-a-co-founder-di-1774122542644-75bce247.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/professional-portrait-of-a-co-founder-di-1774122542644-75bce247.png?_wi=2", imageAlt: "Shushant Kisan Waghmare", }, ]} diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index c583145..620a68e 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -51,7 +51,7 @@ export default function CartPage() { id: "cart-1", name: "Premium Electronics Bundle", price: "₹4,999", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/premium-electronics-bundle-display-with--1774122542908-4aaac429.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/premium-electronics-bundle-display-with--1774122542908-4aaac429.png?_wi=5", imageAlt: "Electronics bundle", initialQuantity: 2, }, @@ -59,7 +59,7 @@ export default function CartPage() { id: "cart-2", name: "Designer Fashion Collection", price: "₹2,999", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/designer-fashion-collection-display-show-1774122543064-2d7a0718.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/designer-fashion-collection-display-show-1774122543064-2d7a0718.png?_wi=4", imageAlt: "Fashion items", initialQuantity: 1, }, @@ -67,7 +67,7 @@ export default function CartPage() { id: "cart-3", name: "Home Decor Set", price: "₹3,499", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/home-decor-set-showing-decorative-items--1774122545630-4d65f223.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/home-decor-set-showing-decorative-items--1774122545630-4d65f223.png?_wi=5", imageAlt: "Home decoration", initialQuantity: 1, }, @@ -75,7 +75,7 @@ export default function CartPage() { id: "cart-4", name: "Sports & Fitness Gear", price: "₹1,999", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/sports-and-fitness-gear-display-includin-1774122543986-521b995c.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/sports-and-fitness-gear-display-includin-1774122543986-521b995c.png?_wi=4", imageAlt: "Sports equipment", initialQuantity: 3, }, diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..0aca515 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "G&S STORE - India's Premier E-Commerce Marketplace", + description: "Shop from trusted sellers on G&S STORE. Secure payments, fast delivery, and 24/7 support. Become a seller and grow your business today.", + keywords: "ecommerce marketplace, online shopping, buy products online, sell online, trusted sellers, India marketplace", + metadataBase: new URL("https://gsstore.com"), + alternates: { + canonical: "https://gsstore.com", + }, + openGraph: { + title: "G&S STORE - Premium E-Commerce Marketplace", + description: "Your trusted platform for shopping and selling. Verified sellers, secure payments, and exceptional service.", + url: "https://gsstore.com", + siteName: "G&S STORE", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/a-vibrant-e-commerce-marketplace-hero-im-1774122543120-c3cab3f2.png", + alt: "G&S STORE Marketplace", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "G&S STORE - Premium E-Commerce", + description: "Shop trusted sellers. Sell your products. Join India's growing marketplace.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/a-vibrant-e-commerce-marketplace-hero-im-1774122543120-c3cab3f2.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}