Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-12 10:29:58 +00:00
5 changed files with 63 additions and 22 deletions

View File

@@ -24,7 +24,7 @@ export default function CartPage() {
quantity: 1,
color: "Navy Blue",
size: "L",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-working-computer-office_1303-21998.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-working-computer-office_1303-21998.jpg?_wi=4",
},
{
id: "3",
@@ -33,7 +33,7 @@ export default function CartPage() {
quantity: 1,
color: "Black",
size: "M",
imageSrc: "http://img.b2bpic.net/free-vector/mexican-floral-embroidery-background_23-2148170643.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/mexican-floral-embroidery-background_23-2148170643.jpg?_wi=4",
},
]);

View File

@@ -157,28 +157,28 @@ export default function CollectionsPage() {
id: "1",
name: "Classic Navy Formal Suit",
price: "₹15,999",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-working-computer-office_1303-21998.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-working-computer-office_1303-21998.jpg?_wi=2",
imageAlt: "Navy Formal Suit",
},
{
id: "2",
name: "Casual Beige Blazer Set",
price: "₹8,999",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-lady-walking-outside-city_1303-22977.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-lady-walking-outside-city_1303-22977.jpg?_wi=2",
imageAlt: "Casual Beige Blazer",
},
{
id: "3",
name: "Ornate Embroidered Jacket",
price: "₹12,499",
imageSrc: "http://img.b2bpic.net/free-vector/mexican-floral-embroidery-background_23-2148170643.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/mexican-floral-embroidery-background_23-2148170643.jpg?_wi=2",
imageAlt: "Embroidered Jacket",
},
{
id: "4",
name: "Modern Western Top",
price: "₹4,999",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-talking-phone-park_1303-23987.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-talking-phone-park_1303-23987.jpg?_wi=2",
imageAlt: "Western Top",
},
]}

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 { Lato } 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 lato = Lato({
variable: "--font-lato",
@@ -20,6 +24,41 @@ const lato = Lato({
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
title: "Rippy Dhillon - Premium Formal Suits, Casual Suits & Embroidered Jackets",
description: "Shop premium fashion at Rippy Dhillon. Explore formal suits, casual suits, embroidered jackets, and western tops. Free shipping, easy returns, and secure checkout with COD & online payment options.",
keywords: "formal suits, casual suits, embroidered jackets, western tops, premium fashion, men's clothing, tailored suits, Indian fashion",
metadataBase: new URL("https://www.rippydhillon.com"),
alternates: {
canonical: "https://www.rippydhillon.com",
},
openGraph: {
title: "Rippy Dhillon - Premium Fashion Store",
description: "Discover exquisitely crafted formal and casual suits, embroidered jackets, and western tops.",
url: "https://www.rippydhillon.com",
siteName: "Rippy Dhillon",
images: [
{
url: "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-stylish-hipster-businessman-model-dressed-elegant-brown-suit-near-dark-wall_158538-11166.jpg",
alt: "Rippy Dhillon Premium Fashion Collection",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Rippy Dhillon - Premium Fashion",
description: "Elevate your style with our premium collection of formal suits, casual suits, and embroidered jackets.",
images: [
"http://img.b2bpic.net/free-photo/portrait-handsome-fashion-stylish-hipster-businessman-model-dressed-elegant-brown-suit-near-dark-wall_158538-11166.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +67,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +81,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -109,28 +109,28 @@ export default function HomePage() {
id: "1",
name: "Classic Navy Formal Suit",
price: "₹15,999",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-working-computer-office_1303-21998.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-working-computer-office_1303-21998.jpg?_wi=1",
imageAlt: "Navy Formal Suit",
},
{
id: "2",
name: "Casual Beige Blazer Set",
price: "₹8,999",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-lady-walking-outside-city_1303-22977.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-lady-walking-outside-city_1303-22977.jpg?_wi=1",
imageAlt: "Casual Beige Blazer",
},
{
id: "3",
name: "Ornate Embroidered Jacket",
price: "₹12,499",
imageSrc: "http://img.b2bpic.net/free-vector/mexican-floral-embroidery-background_23-2148170643.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/mexican-floral-embroidery-background_23-2148170643.jpg?_wi=1",
imageAlt: "Embroidered Jacket",
},
{
id: "4",
name: "Modern Western Top",
price: "₹4,999",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-talking-phone-park_1303-23987.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-talking-phone-park_1303-23987.jpg?_wi=1",
imageAlt: "Western Top",
},
]}

View File

@@ -24,7 +24,7 @@ export default function ProductDetailPage({ params }: ProductPageProps) {
originalPrice: "₹19,999",
rating: 4.8,
reviews: 128,
imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-working-computer-office_1303-21998.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-working-computer-office_1303-21998.jpg?_wi=3",
description: "Elevate your professional wardrobe with our meticulously tailored Classic Navy Formal Suit. Crafted from premium wool blend fabric, this suit exudes sophistication and confidence. Perfect for business meetings, formal events, and special occasions.",
features: [
"Premium 100% wool blend fabric",
@@ -44,7 +44,7 @@ export default function ProductDetailPage({ params }: ProductPageProps) {
originalPrice: "₹11,999",
rating: 4.6,
reviews: 92,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-lady-walking-outside-city_1303-22977.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-lady-walking-outside-city_1303-22977.jpg?_wi=3",
description: "Add versatility to your wardrobe with our Casual Beige Blazer Set. Perfect for smart casual occasions, this blazer effortlessly transitions from office to evening wear. The comfortable fit and premium fabric ensure all-day elegance.",
features: [
"Comfortable cotton-blend fabric",
@@ -64,7 +64,7 @@ export default function ProductDetailPage({ params }: ProductPageProps) {
originalPrice: "₹16,999",
rating: 4.9,
reviews: 156,
imageSrc: "http://img.b2bpic.net/free-vector/mexican-floral-embroidery-background_23-2148170643.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/mexican-floral-embroidery-background_23-2148170643.jpg?_wi=3",
description: "Make a bold statement with our Ornate Embroidered Jacket, featuring intricate traditional patterns. Each stitch is a testament to our artisans' dedication to preserving heritage craftsmanship while embracing contemporary style.",
features: [
"Hand-embroidered traditional patterns",
@@ -84,7 +84,7 @@ export default function ProductDetailPage({ params }: ProductPageProps) {
originalPrice: "₹6,999",
rating: 4.5,
reviews: 67,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-talking-phone-park_1303-23987.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-talking-phone-park_1303-23987.jpg?_wi=3",
description: "Embrace contemporary style with our Modern Western Top. Designed for everyday wear, this versatile piece pairs perfectly with jeans, shorts, or skirts for a effortlessly stylish look.",
features: [
"Premium cotton fabric",