Merge version_1 into main #1
@@ -123,14 +123,14 @@ export default function AboutPage() {
|
||||
id: "1",
|
||||
name: "New Arrivals",
|
||||
price: "From $49",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/social-media-promo-template-maximalism-style_23-2150576858.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/social-media-promo-template-maximalism-style_23-2150576858.jpg?_wi=2",
|
||||
imageAlt: "New luxury collection items",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Best Sellers",
|
||||
price: "From $79",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-laptop-cafe-sitting-coach_1303-27367.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-laptop-cafe-sitting-coach_1303-27367.jpg?_wi=2",
|
||||
imageAlt: "Popular bestselling products",
|
||||
},
|
||||
]}
|
||||
@@ -155,7 +155,7 @@ export default function AboutPage() {
|
||||
role: "Fashion Enthusiast",
|
||||
company: "New York, NY",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stylish-denim-jacket-coffee-shop_273609-4460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stylish-denim-jacket-coffee-shop_273609-4460.jpg?_wi=2",
|
||||
imageAlt: "Sarah Johnson testimonial",
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@ export default function AboutPage() {
|
||||
role: "Luxury Collector",
|
||||
company: "Los Angeles, CA",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg?_wi=2",
|
||||
imageAlt: "Michael Chen testimonial",
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@ export default function AboutPage() {
|
||||
role: "Sustainable Shopper",
|
||||
company: "Miami, FL",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg?_wi=2",
|
||||
imageAlt: "Emily Rodriguez testimonial",
|
||||
},
|
||||
{
|
||||
@@ -182,7 +182,7 @@ export default function AboutPage() {
|
||||
role: "Verified Buyer",
|
||||
company: "San Francisco, CA",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-adult-daughter-mature-father-meeting-with-family-consultant-co-working-shaking-hands_74855-15154.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-adult-daughter-mature-father-meeting-with-family-consultant-co-working-shaking-hands_74855-15154.jpg?_wi=2",
|
||||
imageAlt: "David Kim testimonial",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "LuxeResale | Premium Curated Products & Authentic Luxury",
|
||||
description: "Discover authentic luxury products carefully curated for you. Shop premium items with 100% authenticity guarantee, fast shipping, and trusted customer reviews.",
|
||||
keywords: "luxury resale, authentic products, curated collection, premium goods, designer items, reselling, luxury shopping",
|
||||
metadataBase: new URL("https://luxeresale.com"),
|
||||
alternates: {
|
||||
canonical: "https://luxeresale.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "LuxeResale | Premium Curated Products",
|
||||
description: "Authentic luxury products, carefully curated and verified. Shop with confidence.",
|
||||
url: "https://luxeresale.com",
|
||||
siteName: "LuxeResale",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/office-desktop-with-mobile-phone_23-2148166659.jpg",
|
||||
alt: "Premium curated luxury products",
|
||||
},
|
||||
],
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "LuxeResale | Premium Curated Products",
|
||||
description: "Authentic luxury products, carefully curated and verified for you.",
|
||||
images: ["http://img.b2bpic.net/free-photo/office-desktop-with-mobile-phone_23-2148166659.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={`${montserrat.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -127,14 +127,14 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "New Arrivals",
|
||||
price: "From $49",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/social-media-promo-template-maximalism-style_23-2150576858.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/social-media-promo-template-maximalism-style_23-2150576858.jpg?_wi=1",
|
||||
imageAlt: "New luxury collection items",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Best Sellers",
|
||||
price: "From $79",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-laptop-cafe-sitting-coach_1303-27367.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-laptop-cafe-sitting-coach_1303-27367.jpg?_wi=1",
|
||||
imageAlt: "Popular bestselling products",
|
||||
},
|
||||
]}
|
||||
@@ -174,7 +174,7 @@ export default function HomePage() {
|
||||
role: "Fashion Enthusiast",
|
||||
company: "New York, NY",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stylish-denim-jacket-coffee-shop_273609-4460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stylish-denim-jacket-coffee-shop_273609-4460.jpg?_wi=1",
|
||||
imageAlt: "Sarah Johnson testimonial",
|
||||
},
|
||||
{
|
||||
@@ -183,7 +183,7 @@ export default function HomePage() {
|
||||
role: "Luxury Collector",
|
||||
company: "Los Angeles, CA",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg?_wi=1",
|
||||
imageAlt: "Michael Chen testimonial",
|
||||
},
|
||||
{
|
||||
@@ -192,7 +192,7 @@ export default function HomePage() {
|
||||
role: "Sustainable Shopper",
|
||||
company: "Miami, FL",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg?_wi=1",
|
||||
imageAlt: "Emily Rodriguez testimonial",
|
||||
},
|
||||
{
|
||||
@@ -201,7 +201,7 @@ export default function HomePage() {
|
||||
role: "Verified Buyer",
|
||||
company: "San Francisco, CA",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-adult-daughter-mature-father-meeting-with-family-consultant-co-working-shaking-hands_74855-15154.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-adult-daughter-mature-father-meeting-with-family-consultant-co-working-shaking-hands_74855-15154.jpg?_wi=1",
|
||||
imageAlt: "David Kim testimonial",
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user