Merge version_1 into main #1
@@ -108,32 +108,32 @@ export default function AboutPage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "carousel-1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/disabled-man-wheelchair-working-his-office-job_23-2149571106.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/disabled-man-wheelchair-working-his-office-job_23-2149571106.jpg?_wi=2",
|
||||
imageAlt: "Our team at work",
|
||||
},
|
||||
{
|
||||
id: "carousel-2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimal-tech-setup-with-earbuds_58702-17248.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimal-tech-setup-with-earbuds_58702-17248.jpg?_wi=2",
|
||||
imageAlt: "Quality products",
|
||||
},
|
||||
{
|
||||
id: "carousel-3",
|
||||
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=6",
|
||||
imageAlt: "Premium selection",
|
||||
},
|
||||
{
|
||||
id: "carousel-4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg?_wi=6",
|
||||
imageAlt: "Dedicated service",
|
||||
},
|
||||
{
|
||||
id: "carousel-5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg?_wi=6",
|
||||
imageAlt: "Customer focused",
|
||||
},
|
||||
{
|
||||
id: "carousel-6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-floating-concrete-background_23-2150808029.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-floating-concrete-background_23-2150808029.jpg?_wi=3",
|
||||
imageAlt: "Innovation focus",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -87,7 +87,7 @@ export default function CartPage() {
|
||||
name: "Premium Wireless Headphones",
|
||||
price: "$129.99",
|
||||
variant: "Black",
|
||||
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=7",
|
||||
imageAlt: "Premium Wireless Headphones",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -96,7 +96,7 @@ export default function CartPage() {
|
||||
name: "Ultra HD Camera",
|
||||
price: "$299.99",
|
||||
variant: "Silver",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg?_wi=7",
|
||||
imageAlt: "Ultra HD Camera",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -105,7 +105,7 @@ export default function CartPage() {
|
||||
name: "Smart Watch Pro",
|
||||
price: "$199.99",
|
||||
variant: "Midnight Blue",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg?_wi=7",
|
||||
imageAlt: "Smart Watch Pro",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -114,7 +114,7 @@ export default function CartPage() {
|
||||
name: "Portable Speaker",
|
||||
price: "$79.99",
|
||||
variant: "Rose Gold",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg?_wi=6",
|
||||
imageAlt: "Portable Speaker",
|
||||
isFavorited: false,
|
||||
},
|
||||
|
||||
@@ -88,7 +88,7 @@ export default function ContactPage() {
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Subscribe Now"
|
||||
termsText="By subscribing, you agree to receive promotional emails. We respect your privacy and you can unsubscribe anytime."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/disabled-man-wheelchair-working-his-office-job_23-2149571106.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/disabled-man-wheelchair-working-his-office-job_23-2149571106.jpg?_wi=3"
|
||||
imageAlt="Join our community"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_Sans } 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 { Public_Sans } 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 publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Premium Dropshipping Store - Quality Products at Best Prices",
|
||||
description: "Shop premium quality products at unbeatable prices. Free shipping on orders over $50. 30-day money-back guarantee. 24/7 customer support.",
|
||||
keywords: "ecommerce, online store, shop, products, dropshipping, quality items, free shipping",
|
||||
metadataBase: new URL("https://storehub.com"),
|
||||
alternates: {
|
||||
canonical: "https://storehub.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "StoreHub - Premium Quality Products",
|
||||
description: "Discover our curated collection of premium products with free shipping and 30-day guarantee.",
|
||||
url: "https://storehub.com",
|
||||
siteName: "StoreHub",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/minimal-tech-setup-with-earbuds_58702-17248.jpg",
|
||||
alt: "StoreHub - Premium Products",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "StoreHub - Premium Quality Products",
|
||||
description: "Shop premium products with free shipping and 30-day money-back guarantee.",
|
||||
images: ["http://img.b2bpic.net/free-photo/minimal-tech-setup-with-earbuds_58702-17248.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={`${publicSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -121,32 +121,32 @@ export default function HomePage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "carousel-1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimal-tech-setup-with-earbuds_58702-17248.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimal-tech-setup-with-earbuds_58702-17248.jpg?_wi=1",
|
||||
imageAlt: "Featured premium product showcase",
|
||||
},
|
||||
{
|
||||
id: "carousel-2",
|
||||
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: "Premium product angle view",
|
||||
},
|
||||
{
|
||||
id: "carousel-3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg?_wi=1",
|
||||
imageAlt: "Product lifestyle photography",
|
||||
},
|
||||
{
|
||||
id: "carousel-4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg?_wi=1",
|
||||
imageAlt: "Premium item display",
|
||||
},
|
||||
{
|
||||
id: "carousel-5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg?_wi=1",
|
||||
imageAlt: "Product detail shot",
|
||||
},
|
||||
{
|
||||
id: "carousel-6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-prepare-clothing-new-journey_53876-47006.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-prepare-clothing-new-journey_53876-47006.jpg?_wi=1",
|
||||
imageAlt: "Premium merchandise photography",
|
||||
},
|
||||
]}
|
||||
@@ -206,7 +206,7 @@ export default function HomePage() {
|
||||
name: "Premium Wireless Headphones",
|
||||
price: "$129.99",
|
||||
variant: "Black",
|
||||
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: "Premium Wireless Headphones",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -215,7 +215,7 @@ export default function HomePage() {
|
||||
name: "Ultra HD Camera",
|
||||
price: "$299.99",
|
||||
variant: "Silver",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg?_wi=2",
|
||||
imageAlt: "Ultra HD Camera",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -224,7 +224,7 @@ export default function HomePage() {
|
||||
name: "Smart Watch Pro",
|
||||
price: "$199.99",
|
||||
variant: "Midnight Blue",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg?_wi=2",
|
||||
imageAlt: "Smart Watch Pro",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -233,7 +233,7 @@ export default function HomePage() {
|
||||
name: "Portable Speaker",
|
||||
price: "$79.99",
|
||||
variant: "Rose Gold",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg?_wi=2",
|
||||
imageAlt: "Portable Speaker",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -295,7 +295,7 @@ export default function HomePage() {
|
||||
handle: "@sarahjohnson",
|
||||
testimonial: "Amazing quality and fast shipping! The product exceeded my expectations. Will definitely order again.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg?_wi=1",
|
||||
imageAlt: "Sarah Johnson",
|
||||
},
|
||||
{
|
||||
@@ -304,7 +304,7 @@ export default function HomePage() {
|
||||
handle: "@michaelchen",
|
||||
testimonial: "Best purchase I've made in a long time. Customer service was incredibly helpful and responsive.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-studio-portrait-smiling-blonde-female-pink-jacket_613910-12467.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-studio-portrait-smiling-blonde-female-pink-jacket_613910-12467.jpg?_wi=1",
|
||||
imageAlt: "Michael Chen",
|
||||
},
|
||||
{
|
||||
@@ -313,7 +313,7 @@ export default function HomePage() {
|
||||
handle: "@emilyrodriguez",
|
||||
testimonial: "The 30-day return policy gave me confidence to order. Great value for money!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-businessman-with-crossed-arms_23-2148242733.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-businessman-with-crossed-arms_23-2148242733.jpg?_wi=1",
|
||||
imageAlt: "Emily Rodriguez",
|
||||
},
|
||||
{
|
||||
@@ -322,7 +322,7 @@ export default function HomePage() {
|
||||
handle: "@jameswilson",
|
||||
testimonial: "Free shipping made the deal even better. Packaging was professional and secure.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-putting-crossed-eyes_1187-3266.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-putting-crossed-eyes_1187-3266.jpg?_wi=1",
|
||||
imageAlt: "James Wilson",
|
||||
},
|
||||
{
|
||||
@@ -331,7 +331,7 @@ export default function HomePage() {
|
||||
handle: "@lisamartinez",
|
||||
testimonial: "Outstanding service! Every step of the process was smooth and professional.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg?_wi=2",
|
||||
imageAlt: "Lisa Martinez",
|
||||
},
|
||||
{
|
||||
@@ -340,7 +340,7 @@ export default function HomePage() {
|
||||
handle: "@davidpark",
|
||||
testimonial: "Highly recommend to everyone. Quality, price, and service all top-notch!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-studio-portrait-smiling-blonde-female-pink-jacket_613910-12467.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-studio-portrait-smiling-blonde-female-pink-jacket_613910-12467.jpg?_wi=2",
|
||||
imageAlt: "David Park",
|
||||
},
|
||||
]}
|
||||
@@ -521,7 +521,7 @@ export default function HomePage() {
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Subscribe Now"
|
||||
termsText="By subscribing, you agree to receive promotional emails. We respect your privacy and you can unsubscribe anytime."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/disabled-man-wheelchair-working-his-office-job_23-2149571106.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/disabled-man-wheelchair-working-his-office-job_23-2149571106.jpg?_wi=1"
|
||||
imageAlt="Join our community"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -101,32 +101,32 @@ export default function ProductDetailPage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "carousel-1",
|
||||
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=4",
|
||||
imageAlt: "Product front view",
|
||||
},
|
||||
{
|
||||
id: "carousel-2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg?_wi=4",
|
||||
imageAlt: "Product side view",
|
||||
},
|
||||
{
|
||||
id: "carousel-3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg?_wi=4",
|
||||
imageAlt: "Product lifestyle",
|
||||
},
|
||||
{
|
||||
id: "carousel-4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg?_wi=4",
|
||||
imageAlt: "Product detail",
|
||||
},
|
||||
{
|
||||
id: "carousel-5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-prepare-clothing-new-journey_53876-47006.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-prepare-clothing-new-journey_53876-47006.jpg?_wi=3",
|
||||
imageAlt: "Product in use",
|
||||
},
|
||||
{
|
||||
id: "carousel-6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-floating-concrete-background_23-2150808029.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-floating-concrete-background_23-2150808029.jpg?_wi=2",
|
||||
imageAlt: "Product showcase",
|
||||
},
|
||||
]}
|
||||
@@ -151,7 +151,7 @@ export default function ProductDetailPage() {
|
||||
name: "Premium Wireless Earbuds",
|
||||
price: "$89.99",
|
||||
variant: "Black",
|
||||
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=5",
|
||||
imageAlt: "Premium Wireless Earbuds",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -160,7 +160,7 @@ export default function ProductDetailPage() {
|
||||
name: "Studio Monitor Speakers",
|
||||
price: "$199.99",
|
||||
variant: "White",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg?_wi=5",
|
||||
imageAlt: "Studio Monitor Speakers",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -169,7 +169,7 @@ export default function ProductDetailPage() {
|
||||
name: "Noise Cancelling Mic",
|
||||
price: "$149.99",
|
||||
variant: "Silver",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg?_wi=5",
|
||||
imageAlt: "Noise Cancelling Mic",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -178,7 +178,7 @@ export default function ProductDetailPage() {
|
||||
name: "Audio Cable Bundle",
|
||||
price: "$39.99",
|
||||
variant: "Multi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg?_wi=5",
|
||||
imageAlt: "Audio Cable Bundle",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -208,7 +208,7 @@ export default function ProductDetailPage() {
|
||||
handle: "@sarahjohnson",
|
||||
testimonial: "Best headphones I've ever owned! The sound quality is incredible and they're so comfortable to wear all day.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg?_wi=3",
|
||||
imageAlt: "Sarah Johnson",
|
||||
},
|
||||
{
|
||||
@@ -217,7 +217,7 @@ export default function ProductDetailPage() {
|
||||
handle: "@michaelchen",
|
||||
testimonial: "The noise cancellation is fantastic. Perfect for travel and work calls. Battery lasts forever!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-studio-portrait-smiling-blonde-female-pink-jacket_613910-12467.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-studio-portrait-smiling-blonde-female-pink-jacket_613910-12467.jpg?_wi=3",
|
||||
imageAlt: "Michael Chen",
|
||||
},
|
||||
{
|
||||
@@ -226,7 +226,7 @@ export default function ProductDetailPage() {
|
||||
handle: "@emilyrodriguez",
|
||||
testimonial: "Worth every penny. The build quality is premium and they sound amazing. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-businessman-with-crossed-arms_23-2148242733.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-businessman-with-crossed-arms_23-2148242733.jpg?_wi=2",
|
||||
imageAlt: "Emily Rodriguez",
|
||||
},
|
||||
{
|
||||
@@ -235,7 +235,7 @@ export default function ProductDetailPage() {
|
||||
handle: "@jameswilson",
|
||||
testimonial: "Fast shipping and excellent packaging. The customer service team was super helpful when I had questions.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-putting-crossed-eyes_1187-3266.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-putting-crossed-eyes_1187-3266.jpg?_wi=2",
|
||||
imageAlt: "James Wilson",
|
||||
},
|
||||
{
|
||||
@@ -244,7 +244,7 @@ export default function ProductDetailPage() {
|
||||
handle: "@lisamartinez",
|
||||
testimonial: "Exceeded my expectations! Great sound, comfortable fit, and the Bluetooth connection is seamless.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg?_wi=4",
|
||||
imageAlt: "Lisa Martinez",
|
||||
},
|
||||
{
|
||||
@@ -253,7 +253,7 @@ export default function ProductDetailPage() {
|
||||
handle: "@davidpark",
|
||||
testimonial: "Fantastic product! Been using them for 3 months now and they still work like new. Best investment!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-studio-portrait-smiling-blonde-female-pink-jacket_613910-12467.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-studio-portrait-smiling-blonde-female-pink-jacket_613910-12467.jpg?_wi=4",
|
||||
imageAlt: "David Park",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -97,7 +97,7 @@ export default function ProductsPage() {
|
||||
name: "Premium Wireless Headphones",
|
||||
price: "$129.99",
|
||||
variant: "Black",
|
||||
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: "Premium Wireless Headphones",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -106,7 +106,7 @@ export default function ProductsPage() {
|
||||
name: "Ultra HD Camera",
|
||||
price: "$299.99",
|
||||
variant: "Silver",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-presenting-their-job-resignation_23-2149445174.jpg?_wi=3",
|
||||
imageAlt: "Ultra HD Camera",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -115,7 +115,7 @@ export default function ProductsPage() {
|
||||
name: "Smart Watch Pro",
|
||||
price: "$199.99",
|
||||
variant: "Midnight Blue",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-copy-space-mock-up_23-2148463292.jpg?_wi=3",
|
||||
imageAlt: "Smart Watch Pro",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -124,7 +124,7 @@ export default function ProductsPage() {
|
||||
name: "Portable Speaker",
|
||||
price: "$79.99",
|
||||
variant: "Rose Gold",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-slice-cocktail-drink-glass-white-table-near-brown-curtain_23-2148283676.jpg?_wi=3",
|
||||
imageAlt: "Portable Speaker",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -133,7 +133,7 @@ export default function ProductsPage() {
|
||||
name: "Tablet Ultra",
|
||||
price: "$449.99",
|
||||
variant: "Space Gray",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-prepare-clothing-new-journey_53876-47006.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-prepare-clothing-new-journey_53876-47006.jpg?_wi=2",
|
||||
imageAlt: "Tablet Ultra",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -142,7 +142,7 @@ export default function ProductsPage() {
|
||||
name: "Wireless Charger",
|
||||
price: "$49.99",
|
||||
variant: "White",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-floating-concrete-background_23-2150808029.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-floating-concrete-background_23-2150808029.jpg?_wi=1",
|
||||
imageAlt: "Wireless Charger",
|
||||
isFavorited: false,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user