Merge version_1 into main #1
@@ -118,28 +118,28 @@ export default function AboutPage() {
|
||||
id: 1,
|
||||
title: "Extensive Product Catalog",
|
||||
description: "Access thousands of premium products across multiple categories. Our curated selection ensures quality and variety for every customer.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-icon-illustration-representing-fr-1774089871983-b964ea83.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-icon-illustration-representing-fr-1774089871983-b964ea83.png?_wi=2",
|
||||
imageAlt: "Product Catalog",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Reliable Fulfillment",
|
||||
description: "Our advanced logistics network ensures fast, accurate order fulfillment. Real-time tracking keeps customers informed every step of the way.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/premium-icon-illustration-representing-m-1774089871865-39a417a8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/premium-icon-illustration-representing-m-1774089871865-39a417a8.png?_wi=2",
|
||||
imageAlt: "Reliable Fulfillment",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Dedicated Support Team",
|
||||
description: "Our customer service experts are available 24/7 to help with orders, returns, and any questions. We're committed to your success.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-customer-support-icon-illustratio-1774089872089-7cd7f34f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-customer-support-icon-illustratio-1774089872089-7cd7f34f.png?_wi=2",
|
||||
imageAlt: "Dedicated Support",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Shopify Integration",
|
||||
description: "Seamlessly integrate with your Shopify store. Our API enables automated product syncing, inventory management, and order fulfillment.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/professional-security-icon-illustration--1774089872079-e587b0cb.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/professional-security-icon-illustration--1774089872079-e587b0cb.png?_wi=2",
|
||||
imageAlt: "Shopify Integration",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,28 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } 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";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "PrimeShop - Premium Dropshipping Products | Fast Shipping & Quality Guarantee",
|
||||
description: "Shop premium dropshipping products with fast shipping, 30-day guarantee, and 24/7 support. Wireless headphones, tech accessories, lifestyle products & more.",
|
||||
keywords: "dropshipping products, online shopping, premium electronics, tech accessories, fast shipping, affordable prices",
|
||||
metadataBase: new URL("https://primeshop.com"),
|
||||
alternates: {
|
||||
canonical: "https://primeshop.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "PrimeShop - Premium Dropshipping Products",
|
||||
description: "Discover premium dropshipping products with guaranteed quality, fast shipping, and excellent customer service.",
|
||||
url: "https://primeshop.com",
|
||||
siteName: "PrimeShop",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-premium-product-photography-showc-1774089871759-12815b24.png",
|
||||
alt: "PrimeShop Premium Products",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "PrimeShop - Premium Dropshipping Products",
|
||||
description: "Shop premium products with fast shipping and guaranteed satisfaction.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/professional-lifestyle-product-photograp-1774089872611-75253491.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +66,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -207,28 +207,28 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Free Shipping Over $50",
|
||||
description: "Enjoy free expedited shipping on all orders exceeding $50. Fast delivery guaranteed with real-time tracking.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-icon-illustration-representing-fr-1774089871983-b964ea83.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-icon-illustration-representing-fr-1774089871983-b964ea83.png?_wi=1",
|
||||
imageAlt: "Free Shipping Icon",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "30-Day Money Back Guarantee",
|
||||
description: "Not satisfied? Get a full refund within 30 days, no questions asked. Your satisfaction is our priority.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/premium-icon-illustration-representing-m-1774089871865-39a417a8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/premium-icon-illustration-representing-m-1774089871865-39a417a8.png?_wi=1",
|
||||
imageAlt: "Money Back Guarantee",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "24/7 Customer Support",
|
||||
description: "Our dedicated support team is always available to help. Chat, email, or call us anytime for immediate assistance.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-customer-support-icon-illustratio-1774089872089-7cd7f34f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/modern-customer-support-icon-illustratio-1774089872089-7cd7f34f.png?_wi=1",
|
||||
imageAlt: "Customer Support",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Secure Checkout",
|
||||
description: "Industry-leading SSL encryption protects your data. Shop with confidence using trusted payment methods.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/professional-security-icon-illustration--1774089872079-e587b0cb.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFdiJM1FPLk929hwYKwxIxUMZI/professional-security-icon-illustration--1774089872079-e587b0cb.png?_wi=1",
|
||||
imageAlt: "Secure Payment",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user