diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2274139..c1b9bfd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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", }, ]} diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index fb57023..98ec5d9 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -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", diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..b4c91f1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}