Merge version_1 into main #1

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

View File

@@ -60,21 +60,21 @@ export default function AboutPage() {
id: 1,
title: "Affordable T-Shirts",
description: "Premium quality tees starting at just ₹299. Express yourself without burning a hole in your pocket.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-flea-market_23-2149536973.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-flea-market_23-2149536973.jpg?_wi=3",
imageAlt: "Affordable T-Shirts Collection",
},
{
id: 2,
title: "Curated Amazon Finds",
description: "We handpick the best trending products from Amazon with verified affiliate links for your trust.",
imageSrc: "http://img.b2bpic.net/free-photo/women-with-shopping-bags-mock-up_23-2148312153.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-with-shopping-bags-mock-up_23-2148312153.jpg?_wi=3",
imageAlt: "Amazon Trending Products",
},
{
id: 3,
title: "Budget-Friendly Lifestyle",
description: "Discover quality accessories, gadgets, and lifestyle items all under your budget.",
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-top-view_23-2148837311.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-top-view_23-2148837311.jpg?_wi=3",
imageAlt: "Budget Lifestyle Products",
},
]}
@@ -107,7 +107,7 @@ export default function AboutPage() {
handle: "@priya_style",
testimonial: "Finally found affordable T-shirts with amazing quality! The whole ordering process was so smooth and delivery was super fast. Highly recommend TrendyCart!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-woman-smiling-face-expression-headshot-portrait_53876-65110.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-woman-smiling-face-expression-headshot-portrait_53876-65110.jpg?_wi=2",
imageAlt: "Priya Singh",
},
{
@@ -116,7 +116,7 @@ export default function AboutPage() {
handle: "@arjun_vibes",
testimonial: "The Amazon affiliate recommendations are spot on. It's like having a personal shopping assistant. Great prices, great selection. Love it!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-confident_1298-133.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-confident_1298-133.jpg?_wi=2",
imageAlt: "Arjun Patel",
},
{
@@ -125,7 +125,7 @@ export default function AboutPage() {
handle: "@riya_fashion",
testimonial: "The blog posts are super helpful! I discovered so many cool products under ₹500 thanks to their recommendations. Will definitely come back.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2",
imageAlt: "Riya Sharma",
},
]}

View File

@@ -61,7 +61,7 @@ export default function BlogPage() {
category: "Fashion",
title: "Best T-Shirts Under ₹500: Top Picks for 2024",
excerpt: "Discover our carefully curated selection of premium T-shirts that won't drain your wallet. Quality, style, and comfort all in one.",
imageSrc: "http://img.b2bpic.net/free-photo/father-son-front-wall_23-2147824681.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/father-son-front-wall_23-2147824681.jpg?_wi=2",
imageAlt: "T-Shirts Under 500",
authorName: "Priya Kapoor",
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-desk_23-2149097922.jpg",
@@ -72,7 +72,7 @@ export default function BlogPage() {
category: "Lifestyle",
title: "Amazon Gems: 7 Must-Have Lifestyle Products",
excerpt: "We tested and loved these Amazon picks. From gadgets to accessories, find your next favorite product at great prices.",
imageSrc: "http://img.b2bpic.net/free-photo/concept-location-photo-shoot-photo-studio_185193-164056.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/concept-location-photo-shoot-photo-studio_185193-164056.jpg?_wi=2",
imageAlt: "Amazon Lifestyle Products",
authorName: "Rahul Singh",
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-with-crossed-arms-wearing-wool-suit_613910-1866.jpg",
@@ -83,7 +83,7 @@ export default function BlogPage() {
category: "Shopping Tips",
title: "Smart Shopping: How to Get the Best Deals Online",
excerpt: "Learn insider tips and tricks to maximize your savings on trendy fashion and lifestyle items without compromising on quality.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-garage-sale_23-2150574480.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-garage-sale_23-2150574480.jpg?_wi=2",
imageAlt: "Smart Shopping Tips",
authorName: "Neha Gupta",
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-young-brunette-woman-reading-mobile-phone-sitting-home-using-smartphone_1258-186563.jpg",

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } 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 { Inter_Tight } 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 interTight = Inter_Tight({
variable: "--font-inter-tight",
@@ -20,6 +24,39 @@ const interTight = Inter_Tight({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "TrendyCart - Affordable Fashion & Trending Products India",
description: "Shop trendy T-shirts, curated Amazon finds, and budget-friendly lifestyle items. Affordable style for young Indians. Free shipping & easy returns.",
keywords: "t-shirts india, trendy fashion, affordable products, amazon affiliate, budget shopping, lifestyle items, online shopping india",
metadataBase: new URL("https://trendycart.in"),
alternates: {
canonical: "https://trendycart.in",
},
openGraph: {
title: "TrendyCart - Trendy Fashion & Products for Young Indians",
description: "Discover affordable T-shirts, trending Amazon products, and budget lifestyle items. Shop now with free shipping!",
url: "https://trendycart.in",
siteName: "TrendyCart",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-people-having-fun_23-2149832974.jpg",
alt: "TrendyCart - Affordable Fashion & Trending Products",
},
],
},
twitter: {
card: "summary_large_image",
title: "TrendyCart - Trendy Fashion & Products India",
description: "Affordable T-shirts & trending products for young Indians. Shop smart, save more!",
images: ["http://img.b2bpic.net/free-photo/young-people-having-fun_23-2149832974.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +65,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -144,7 +144,7 @@ export default function HomePage() {
id: "1",
name: "Classic Black T-Shirt",
price: "₹299",
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-pulling-earlobes-with-fingers-t-shirt-pants-medical-mask-looking-funny_176474-81789.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-pulling-earlobes-with-fingers-t-shirt-pants-medical-mask-looking-funny_176474-81789.jpg?_wi=1",
imageAlt: "Classic Black T-Shirt",
isFavorited: false,
initialQuantity: 1,
@@ -153,7 +153,7 @@ export default function HomePage() {
id: "2",
name: "Graphic Print Tee",
price: "₹399",
imageSrc: "http://img.b2bpic.net/free-vector/vintage-label-design-with-lettering-composition-dark_1284-52027.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/vintage-label-design-with-lettering-composition-dark_1284-52027.jpg?_wi=1",
imageAlt: "Graphic Print T-Shirt",
isFavorited: false,
initialQuantity: 1,
@@ -162,7 +162,7 @@ export default function HomePage() {
id: "3",
name: "Premium Wireless Earbuds",
price: "₹1,499",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-putting-earphones_23-2149409952.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-putting-earphones_23-2149409952.jpg?_wi=1",
imageAlt: "Wireless Earbuds",
isFavorited: false,
initialQuantity: 1,
@@ -171,7 +171,7 @@ export default function HomePage() {
id: "4",
name: "Trendy Crossbody Bag",
price: "₹899",
imageSrc: "http://img.b2bpic.net/free-photo/happy-stylish-female-student-posing-modern-park-wesring-white-jeans-jacket-t-shirt_273443-3157.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-stylish-female-student-posing-modern-park-wesring-white-jeans-jacket-t-shirt_273443-3157.jpg?_wi=1",
imageAlt: "Crossbody Bag",
isFavorited: false,
initialQuantity: 1,
@@ -180,7 +180,7 @@ export default function HomePage() {
id: "5",
name: "Smart Watch Fitness",
price: "₹2,499",
imageSrc: "http://img.b2bpic.net/free-photo/woman-looks-smartwatch-happy-burn-much-calories-training-wears-cropped-top-headphones-around-neck-standsoutdoor-exercises-regularly_273609-55740.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-looks-smartwatch-happy-burn-much-calories-training-wears-cropped-top-headphones-around-neck-standsoutdoor-exercises-regularly_273609-55740.jpg?_wi=1",
imageAlt: "Smart Watch",
isFavorited: false,
initialQuantity: 1,
@@ -189,7 +189,7 @@ export default function HomePage() {
id: "6",
name: "Minimalist Wallet",
price: "₹449",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-beautiful-fashionable-woman-park_1153-4186.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-beautiful-fashionable-woman-park_1153-4186.jpg?_wi=1",
imageAlt: "Minimalist Wallet",
isFavorited: false,
initialQuantity: 1,
@@ -215,21 +215,21 @@ export default function HomePage() {
id: 1,
title: "Affordable T-Shirts",
description: "Premium quality tees starting at just ₹299. Express yourself without burning a hole in your pocket.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-flea-market_23-2149536973.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-flea-market_23-2149536973.jpg?_wi=1",
imageAlt: "Affordable T-Shirts Collection",
},
{
id: 2,
title: "Curated Amazon Finds",
description: "We handpick the best trending products from Amazon with verified affiliate links for your trust.",
imageSrc: "http://img.b2bpic.net/free-photo/women-with-shopping-bags-mock-up_23-2148312153.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-with-shopping-bags-mock-up_23-2148312153.jpg?_wi=1",
imageAlt: "Amazon Trending Products",
},
{
id: 3,
title: "Budget-Friendly Lifestyle",
description: "Discover quality accessories, gadgets, and lifestyle items all under your budget.",
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-top-view_23-2148837311.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-top-view_23-2148837311.jpg?_wi=1",
imageAlt: "Budget Lifestyle Products",
},
]}
@@ -315,7 +315,7 @@ export default function HomePage() {
handle: "@priya_style",
testimonial: "Finally found affordable T-shirts with amazing quality! The whole ordering process was so smooth and delivery was super fast. Highly recommend TrendyCart!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-woman-smiling-face-expression-headshot-portrait_53876-65110.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-woman-smiling-face-expression-headshot-portrait_53876-65110.jpg?_wi=1",
imageAlt: "Priya Singh",
},
{
@@ -324,7 +324,7 @@ export default function HomePage() {
handle: "@arjun_vibes",
testimonial: "The Amazon affiliate recommendations are spot on. It's like having a personal shopping assistant. Great prices, great selection. Love it!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-confident_1298-133.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-confident_1298-133.jpg?_wi=1",
imageAlt: "Arjun Patel",
},
{
@@ -333,7 +333,7 @@ export default function HomePage() {
handle: "@riya_fashion",
testimonial: "The blog posts are super helpful! I discovered so many cool products under ₹500 thanks to their recommendations. Will definitely come back.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1",
imageAlt: "Riya Sharma",
},
{
@@ -386,7 +386,7 @@ export default function HomePage() {
category: "Fashion",
title: "Best T-Shirts Under ₹500: Top Picks for 2024",
excerpt: "Discover our carefully curated selection of premium T-shirts that won't drain your wallet. Quality, style, and comfort all in one.",
imageSrc: "http://img.b2bpic.net/free-photo/father-son-front-wall_23-2147824681.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/father-son-front-wall_23-2147824681.jpg?_wi=1",
imageAlt: "T-Shirts Under 500",
authorName: "Priya Kapoor",
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-desk_23-2149097922.jpg",
@@ -397,7 +397,7 @@ export default function HomePage() {
category: "Lifestyle",
title: "Amazon Gems: 7 Must-Have Lifestyle Products",
excerpt: "We tested and loved these Amazon picks. From gadgets to accessories, find your next favorite product at great prices.",
imageSrc: "http://img.b2bpic.net/free-photo/concept-location-photo-shoot-photo-studio_185193-164056.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/concept-location-photo-shoot-photo-studio_185193-164056.jpg?_wi=1",
imageAlt: "Amazon Lifestyle Products",
authorName: "Rahul Singh",
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-with-crossed-arms-wearing-wool-suit_613910-1866.jpg",
@@ -408,7 +408,7 @@ export default function HomePage() {
category: "Shopping Tips",
title: "Smart Shopping: How to Get the Best Deals Online",
excerpt: "Learn insider tips and tricks to maximize your savings on trendy fashion and lifestyle items without compromising on quality.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-garage-sale_23-2150574480.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-garage-sale_23-2150574480.jpg?_wi=1",
imageAlt: "Smart Shopping Tips",
authorName: "Neha Gupta",
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-young-brunette-woman-reading-mobile-phone-sitting-home-using-smartphone_1258-186563.jpg",

View File

@@ -91,7 +91,7 @@ export default function ShopPage() {
id: "1",
name: "Classic Black T-Shirt",
price: "₹299",
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-pulling-earlobes-with-fingers-t-shirt-pants-medical-mask-looking-funny_176474-81789.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-pulling-earlobes-with-fingers-t-shirt-pants-medical-mask-looking-funny_176474-81789.jpg?_wi=2",
imageAlt: "Classic Black T-Shirt",
isFavorited: false,
initialQuantity: 1,
@@ -100,7 +100,7 @@ export default function ShopPage() {
id: "2",
name: "Graphic Print Tee",
price: "₹399",
imageSrc: "http://img.b2bpic.net/free-vector/vintage-label-design-with-lettering-composition-dark_1284-52027.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/vintage-label-design-with-lettering-composition-dark_1284-52027.jpg?_wi=2",
imageAlt: "Graphic Print T-Shirt",
isFavorited: false,
initialQuantity: 1,
@@ -109,7 +109,7 @@ export default function ShopPage() {
id: "3",
name: "Premium Wireless Earbuds",
price: "₹1,499",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-putting-earphones_23-2149409952.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-putting-earphones_23-2149409952.jpg?_wi=2",
imageAlt: "Wireless Earbuds",
isFavorited: false,
initialQuantity: 1,
@@ -118,7 +118,7 @@ export default function ShopPage() {
id: "4",
name: "Trendy Crossbody Bag",
price: "₹899",
imageSrc: "http://img.b2bpic.net/free-photo/happy-stylish-female-student-posing-modern-park-wesring-white-jeans-jacket-t-shirt_273443-3157.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-stylish-female-student-posing-modern-park-wesring-white-jeans-jacket-t-shirt_273443-3157.jpg?_wi=2",
imageAlt: "Crossbody Bag",
isFavorited: false,
initialQuantity: 1,
@@ -127,7 +127,7 @@ export default function ShopPage() {
id: "5",
name: "Smart Watch Fitness",
price: "₹2,499",
imageSrc: "http://img.b2bpic.net/free-photo/woman-looks-smartwatch-happy-burn-much-calories-training-wears-cropped-top-headphones-around-neck-standsoutdoor-exercises-regularly_273609-55740.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-looks-smartwatch-happy-burn-much-calories-training-wears-cropped-top-headphones-around-neck-standsoutdoor-exercises-regularly_273609-55740.jpg?_wi=2",
imageAlt: "Smart Watch",
isFavorited: false,
initialQuantity: 1,
@@ -136,7 +136,7 @@ export default function ShopPage() {
id: "6",
name: "Minimalist Wallet",
price: "₹449",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-beautiful-fashionable-woman-park_1153-4186.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-beautiful-fashionable-woman-park_1153-4186.jpg?_wi=2",
imageAlt: "Minimalist Wallet",
isFavorited: false,
initialQuantity: 1,
@@ -145,7 +145,7 @@ export default function ShopPage() {
id: "7",
name: "White Casual T-Shirt",
price: "₹279",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-flea-market_23-2149536973.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-flea-market_23-2149536973.jpg?_wi=2",
imageAlt: "White Casual T-Shirt",
isFavorited: false,
initialQuantity: 1,
@@ -154,7 +154,7 @@ export default function ShopPage() {
id: "8",
name: "Stylish Sneakers",
price: "₹1,299",
imageSrc: "http://img.b2bpic.net/free-photo/women-with-shopping-bags-mock-up_23-2148312153.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-with-shopping-bags-mock-up_23-2148312153.jpg?_wi=2",
imageAlt: "Stylish Sneakers",
isFavorited: false,
initialQuantity: 1,
@@ -163,7 +163,7 @@ export default function ShopPage() {
id: "9",
name: "Summer Collection Hat",
price: "₹349",
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-top-view_23-2148837311.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-top-view_23-2148837311.jpg?_wi=2",
imageAlt: "Summer Collection Hat",
isFavorited: false,
initialQuantity: 1,