Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-11 19:19:52 +00:00
4 changed files with 80 additions and 41 deletions

View File

@@ -99,7 +99,7 @@ export default function AboutPage() {
icon: MapPin,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/person-using-macrame-technique-home_23-2149064500.jpg"
imageSrc="http://img.b2bpic.net/free-photo/person-using-macrame-technique-home_23-2149064500.jpg?_wi=2"
imageAlt="Thrift Shop storefront and interior"
imagePosition="right"
textboxLayout="default"
@@ -157,7 +157,7 @@ export default function AboutPage() {
handle: "@anjali_fashion",
testimonial:
"Thrift Shop has amazing quality pieces at unbeatable prices. I love supporting sustainable fashion!",
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg?_wi=3",
imageAlt: "Anjali Kumar",
},
{
@@ -166,7 +166,7 @@ export default function AboutPage() {
handle: "@style_seeker",
testimonial:
"Found the perfect vintage jacket here. The staff is super helpful and knowledgeable about fashion.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg?_wi=3",
imageAlt: "Rajesh Menon",
},
{
@@ -175,7 +175,7 @@ export default function AboutPage() {
handle: "@vintage_vibes",
testimonial:
"My go-to place for affordable ethnic wear. The collection keeps getting better every month!",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg?_wi=2",
imageAlt: "Meera Nair",
},
{
@@ -184,7 +184,7 @@ export default function AboutPage() {
handle: "@fashion_forward",
testimonial:
"Great experience shopping here. Quality products, fair prices, and excellent customer service.",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1604.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1604.jpg?_wi=2",
imageAlt: "Arjun Singh",
},
{
@@ -193,7 +193,7 @@ export default function AboutPage() {
handle: "@eco_fashion",
testimonial:
"Love how Thrift Shop promotes sustainable fashion. Every piece I buy has a story!",
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg?_wi=4",
imageAlt: "Divya Sharma",
},
{
@@ -202,7 +202,7 @@ export default function AboutPage() {
handle: "@style_guru",
testimonial:
"Best thrift store in Taliparamba. Always finding treasures here. Highly recommended!",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg?_wi=4",
imageAlt: "Vikram Patel",
},
]}

View File

@@ -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: "Thrift Shop - Affordable Fashion in Taliparamba",
description: "Discover sustainable, affordable fashion at Thrift Shop in Taliparamba, Kerala. Curated vintage collections and new arrivals. 4.5★ rated. Open 10 AM - 9 PM.",
keywords: "thrift store Taliparamba, affordable fashion Kerala, vintage clothing, sustainable fashion, City Mall",
metadataBase: new URL("https://thriftshoptaliparamba.com"),
alternates: {
canonical: "https://thriftshoptaliparamba.com",
},
openGraph: {
title: "Thrift Shop - Affordable Fashion, Timeless Style",
description: "Shop sustainable, curated fashion at Thrift Shop. Men's, women's, vintage & accessories. Located at City Mall, Taliparamba.",
url: "https://thriftshoptaliparamba.com",
siteName: "Thrift Shop",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-handsome-man-choosing-clothes-shop_1303-19713.jpg",
alt: "Thrift Shop Fashion Collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "Thrift Shop - Affordable Fashion, Timeless Style",
description: "Discover sustainable fashion at Thrift Shop in Taliparamba. 4.5★ rated.",
images: ["http://img.b2bpic.net/free-photo/young-handsome-man-choosing-clothes-shop_1303-19713.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -62,19 +62,19 @@ export default function HomePage() {
imageAlt: "Hero banner featuring stylish sustainable fashion"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg?_wi=1",
imageAlt: "Men's collection showcase"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-repair-sale-shop_23-2150746328.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-repair-sale-shop_23-2150746328.jpg?_wi=1",
imageAlt: "Women's collection display"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-trying-necklace_23-2147669954.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-trying-necklace_23-2147669954.jpg?_wi=1",
imageAlt: "Accessories collection featured"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-blonde-woman-jeans-oversize-jacket-posing-against-wall-street_285396-8024.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-blonde-woman-jeans-oversize-jacket-posing-against-wall-street_285396-8024.jpg?_wi=1",
imageAlt: "Vintage collection highlights"
}
]}
@@ -149,7 +149,7 @@ export default function HomePage() {
icon: MapPin
}
]}
imageSrc="http://img.b2bpic.net/free-photo/person-using-macrame-technique-home_23-2149064500.jpg"
imageSrc="http://img.b2bpic.net/free-photo/person-using-macrame-technique-home_23-2149064500.jpg?_wi=1"
imageAlt="Thrift Shop storefront and interior"
imagePosition="right"
textboxLayout="default"
@@ -168,42 +168,42 @@ export default function HomePage() {
id: "1",
name: "Premium Vintage Denim Jacket",
price: "₹1,299",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg?_wi=2",
imageAlt: "Vintage denim jacket"
},
{
id: "2",
name: "Classic Silk Blend Saree",
price: "₹899",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-repair-sale-shop_23-2150746328.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-repair-sale-shop_23-2150746328.jpg?_wi=2",
imageAlt: "Traditional silk saree"
},
{
id: "3",
name: "Leather Crossbody Bag",
price: "₹749",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-trying-necklace_23-2147669954.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-trying-necklace_23-2147669954.jpg?_wi=2",
imageAlt: "Brown leather bag"
},
{
id: "4",
name: "Retro Band T-Shirt",
price: "₹499",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-blonde-woman-jeans-oversize-jacket-posing-against-wall-street_285396-8024.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-blonde-woman-jeans-oversize-jacket-posing-against-wall-street_285396-8024.jpg?_wi=2",
imageAlt: "Vintage band tee"
},
{
id: "5",
name: "Wool Blend Blazer",
price: "₹1,499",
imageSrc: "http://img.b2bpic.net/free-photo/antiques-market-objects-arrangement_23-2148950959.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/antiques-market-objects-arrangement_23-2148950959.jpg?_wi=1",
imageAlt: "Professional blazer"
},
{
id: "6",
name: "Embroidered Kurta Set",
price: "₹699",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg?_wi=3",
imageAlt: "Ethnic kurta collection"
}
]}
@@ -227,7 +227,7 @@ export default function HomePage() {
name: "Anjali Kumar",
handle: "@anjali_fashion",
testimonial: "Thrift Shop has amazing quality pieces at unbeatable prices. I love supporting sustainable fashion!",
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg?_wi=1",
imageAlt: "Anjali Kumar"
},
{
@@ -235,7 +235,7 @@ export default function HomePage() {
name: "Rajesh Menon",
handle: "@style_seeker",
testimonial: "Found the perfect vintage jacket here. The staff is super helpful and knowledgeable about fashion.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg?_wi=1",
imageAlt: "Rajesh Menon"
},
{
@@ -243,7 +243,7 @@ export default function HomePage() {
name: "Meera Nair",
handle: "@vintage_vibes",
testimonial: "My go-to place for affordable ethnic wear. The collection keeps getting better every month!",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg?_wi=1",
imageAlt: "Meera Nair"
},
{
@@ -251,7 +251,7 @@ export default function HomePage() {
name: "Arjun Singh",
handle: "@fashion_forward",
testimonial: "Great experience shopping here. Quality products, fair prices, and excellent customer service.",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1604.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1604.jpg?_wi=1",
imageAlt: "Arjun Singh"
},
{
@@ -259,7 +259,7 @@ export default function HomePage() {
name: "Divya Sharma",
handle: "@eco_fashion",
testimonial: "Love how Thrift Shop promotes sustainable fashion. Every piece I buy has a story!",
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-using-cell-phone-work_329181-20159.jpg?_wi=2",
imageAlt: "Divya Sharma"
},
{
@@ -267,7 +267,7 @@ export default function HomePage() {
name: "Vikram Patel",
handle: "@style_guru",
testimonial: "Best thrift store in Taliparamba. Always finding treasures here. Highly recommended!",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg?_wi=2",
imageAlt: "Vikram Patel"
}
]}

View File

@@ -46,63 +46,63 @@ export default function ShopPage() {
id: "1",
name: "Premium Vintage Denim Jacket",
price: "₹1,299",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg?_wi=4",
imageAlt: "Vintage denim jacket in classic blue"
},
{
id: "2",
name: "Classic Silk Blend Saree",
price: "₹899",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-repair-sale-shop_23-2150746328.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-repair-sale-shop_23-2150746328.jpg?_wi=3",
imageAlt: "Traditional silk blend saree"
},
{
id: "3",
name: "Leather Crossbody Bag",
price: "₹749",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-trying-necklace_23-2147669954.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-trying-necklace_23-2147669954.jpg?_wi=3",
imageAlt: "Genuine leather crossbody bag"
},
{
id: "4",
name: "Retro Band T-Shirt",
price: "₹499",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-blonde-woman-jeans-oversize-jacket-posing-against-wall-street_285396-8024.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-blonde-woman-jeans-oversize-jacket-posing-against-wall-street_285396-8024.jpg?_wi=3",
imageAlt: "Vintage band t-shirt"
},
{
id: "5",
name: "Wool Blend Blazer",
price: "₹1,499",
imageSrc: "http://img.b2bpic.net/free-photo/antiques-market-objects-arrangement_23-2148950959.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/antiques-market-objects-arrangement_23-2148950959.jpg?_wi=2",
imageAlt: "Professional wool blend blazer"
},
{
id: "6",
name: "Embroidered Kurta Set",
price: "₹699",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-clothes-rack-showroom_23-2148175631.jpg?_wi=5",
imageAlt: "Embroidered ethnic kurta set"
},
{
id: "7",
name: "Linen Summer Dress",
price: "₹649",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-repair-sale-shop_23-2150746328.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-repair-sale-shop_23-2150746328.jpg?_wi=4",
imageAlt: "Breathable linen summer dress"
},
{
id: "8",
name: "Denim Shorts",
price: "₹449",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-trying-necklace_23-2147669954.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-girl-trying-necklace_23-2147669954.jpg?_wi=4",
imageAlt: "Classic denim shorts"
},
{
id: "9",
name: "Cotton Flannel Shirt",
price: "₹599",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-blonde-woman-jeans-oversize-jacket-posing-against-wall-street_285396-8024.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-blonde-woman-jeans-oversize-jacket-posing-against-wall-street_285396-8024.jpg?_wi=4",
imageAlt: "Comfortable cotton flannel shirt"
}
]}