Merge version_1 into main #1
@@ -95,7 +95,7 @@ export default function GalleryPage() {
|
||||
price: "Hair Services",
|
||||
variant: "Color & Style",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-female_1301-1121.jpg",
|
||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-female_1301-1121.jpg?_wi=3",
|
||||
imageAlt: "Hair transformation",
|
||||
},
|
||||
{
|
||||
@@ -104,7 +104,7 @@ export default function GalleryPage() {
|
||||
price: "Makeup",
|
||||
variant: "Bride Glow",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-lovely-glamorous-lady_23-2148398559.jpg",
|
||||
"http://img.b2bpic.net/free-photo/portrait-lovely-glamorous-lady_23-2148398559.jpg?_wi=3",
|
||||
imageAlt: "Makeup transformation",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function GalleryPage() {
|
||||
price: "Ambiance",
|
||||
variant: "Premium Space",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/pregnant-woman-applies-makeup-home-front-mirror_169016-27953.jpg",
|
||||
"http://img.b2bpic.net/free-photo/pregnant-woman-applies-makeup-home-front-mirror_169016-27953.jpg?_wi=3",
|
||||
imageAlt: "Salon interior",
|
||||
},
|
||||
{
|
||||
@@ -122,7 +122,7 @@ export default function GalleryPage() {
|
||||
price: "Hair Services",
|
||||
variant: "Style & Cut",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-with-creative-coloured-hair-pink-makeup_633478-2244.jpg",
|
||||
"http://img.b2bpic.net/free-photo/woman-with-creative-coloured-hair-pink-makeup_633478-2244.jpg?_wi=3",
|
||||
imageAlt: "Hair styling result",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,60 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } 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 { Manrope } 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 manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Lavish Salon Karachi - Premium Hair & Beauty Services",
|
||||
description: "Expert hair, makeup, and grooming salon in Korangi, Karachi. Bridal makeup, hair treatments, facials, men's grooming. 10+ years, 4.6★ rating. Book now!",
|
||||
keywords: "salon Karachi, bridal makeup Karachi, hair salon Korangi, beauty salon, men's grooming, haircut Karachi, makeup artist, keratin treatment",
|
||||
metadataBase: new URL("https://lavishsalon.pk"),
|
||||
alternates: {
|
||||
canonical: "https://lavishsalon.pk",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Lavish Men's & Women Salon - Premium Beauty in Karachi",
|
||||
description: "Experience luxury beauty and grooming. Expert stylists, premium services, 10+ years experience. Book your appointment today!",
|
||||
siteName: "Lavish Salon Karachi",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://lavishsalon.pk/og-image.jpg",
|
||||
alt: "Lavish Salon Karachi",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Lavish Salon - Premium Beauty & Grooming",
|
||||
description: "Expert salon services in Karachi. Bridal makeup, hair treatments, grooming. 4.6★ rated, 1000+ clients",
|
||||
images: ["https://lavishsalon.pk/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +63,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +77,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -151,42 +151,42 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Bridal Makeup",
|
||||
description: "Complete bridal transformation with HD makeup, hair styling, and consultation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-bride-smiling_624325-818.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-bride-smiling_624325-818.jpg?_wi=1",
|
||||
imageAlt: "Bridal makeup transformation",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Hair Treatments",
|
||||
description: "Keratin treatments, hair coloring, and advanced hair care solutions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-womwn-wearing-trendy-hairstyle_23-2149478914.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-womwn-wearing-trendy-hairstyle_23-2149478914.jpg?_wi=1",
|
||||
imageAlt: "Professional hair treatment",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Facials & Skincare",
|
||||
description: "Luxury facials, anti-aging treatments, and professional skincare services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26013.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26013.jpg?_wi=1",
|
||||
imageAlt: "Premium facial treatment",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Men's Haircuts",
|
||||
description: "Expert haircuts, styling, and professional grooming services for men",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-man-getting-groomed_23-2149220555.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-man-getting-groomed_23-2149220555.jpg?_wi=1",
|
||||
imageAlt: "Professional men haircut",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Beard Styling",
|
||||
description: "Premium beard grooming, shaping, and maintenance services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/european-brutal-man-with-beard-cut-barbershop_343596-4701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/european-brutal-man-with-beard-cut-barbershop_343596-4701.jpg?_wi=1",
|
||||
imageAlt: "Professional beard styling",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Relaxation Massage",
|
||||
description: "Head and face massage therapy for complete relaxation and wellness",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-applying-his-anti-aging-treatment_23-2149296487.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-applying-his-anti-aging-treatment_23-2149296487.jpg?_wi=1",
|
||||
imageAlt: "Luxury massage therapy",
|
||||
},
|
||||
]}
|
||||
@@ -234,7 +234,7 @@ export default function HomePage() {
|
||||
name: "Hair Coloring Transformation",
|
||||
price: "Premium",
|
||||
variant: "Hair Services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-female_1301-1121.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-female_1301-1121.jpg?_wi=1",
|
||||
imageAlt: "Hair transformation before and after",
|
||||
},
|
||||
{
|
||||
@@ -242,7 +242,7 @@ export default function HomePage() {
|
||||
name: "Bridal Makeup Look",
|
||||
price: "Luxury",
|
||||
variant: "Makeup Services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-lovely-glamorous-lady_23-2148398559.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-lovely-glamorous-lady_23-2148398559.jpg?_wi=1",
|
||||
imageAlt: "Bridal makeup transformation",
|
||||
},
|
||||
{
|
||||
@@ -250,7 +250,7 @@ export default function HomePage() {
|
||||
name: "Salon Interior",
|
||||
price: "Premium",
|
||||
variant: "Ambiance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pregnant-woman-applies-makeup-home-front-mirror_169016-27953.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pregnant-woman-applies-makeup-home-front-mirror_169016-27953.jpg?_wi=1",
|
||||
imageAlt: "Luxurious salon space",
|
||||
},
|
||||
{
|
||||
@@ -258,7 +258,7 @@ export default function HomePage() {
|
||||
name: "Hair Styling Result",
|
||||
price: "Professional",
|
||||
variant: "Hair Services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-creative-coloured-hair-pink-makeup_633478-2244.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-creative-coloured-hair-pink-makeup_633478-2244.jpg?_wi=1",
|
||||
imageAlt: "Professional hair styling",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -94,42 +94,42 @@ export default function ServicesPage() {
|
||||
id: 1,
|
||||
title: "Bridal Makeup",
|
||||
description: "Complete bridal transformation with HD makeup, hair styling, and day-long coverage. Includes consultation and trial session.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-bride-smiling_624325-818.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-bride-smiling_624325-818.jpg?_wi=2",
|
||||
imageAlt: "Bridal makeup service",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Party & Event Makeup",
|
||||
description: "Professional party makeup for all occasions. Customized looks that last all night with premium products.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-lovely-glamorous-lady_23-2148398559.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-lovely-glamorous-lady_23-2148398559.jpg?_wi=2",
|
||||
imageAlt: "Party makeup",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Hair Styling & Coloring",
|
||||
description: "Expert hair styling, coloring, and trendy cuts. Using international brands for vibrant and long-lasting results.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-womwn-wearing-trendy-hairstyle_23-2149478914.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-womwn-wearing-trendy-hairstyle_23-2149478914.jpg?_wi=2",
|
||||
imageAlt: "Hair styling service",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Keratin Treatment",
|
||||
description: "Premium keratin hair treatment for smooth, shiny, and frizz-free hair. Long-lasting results with professional care.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-creative-coloured-hair-pink-makeup_633478-2244.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-creative-coloured-hair-pink-makeup_633478-2244.jpg?_wi=2",
|
||||
imageAlt: "Keratin treatment",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Facials & Skincare",
|
||||
description: "Luxury facials including anti-aging, hydrating, and brightening treatments for all skin types.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26013.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26013.jpg?_wi=2",
|
||||
imageAlt: "Facial treatment",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Waxing & Hair Removal",
|
||||
description: "Professional waxing services for smooth skin using premium products. Painless and effective hair removal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pregnant-woman-applies-makeup-home-front-mirror_169016-27953.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pregnant-woman-applies-makeup-home-front-mirror_169016-27953.jpg?_wi=2",
|
||||
imageAlt: "Waxing service",
|
||||
},
|
||||
]}
|
||||
@@ -152,35 +152,35 @@ export default function ServicesPage() {
|
||||
id: 1,
|
||||
title: "Professional Haircut",
|
||||
description: "Expert haircuts with latest trends and styles. Personalized consultation to find the perfect look for you.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-man-getting-groomed_23-2149220555.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-man-getting-groomed_23-2149220555.jpg?_wi=2",
|
||||
imageAlt: "Men haircut service",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Beard Styling & Grooming",
|
||||
description: "Premium beard grooming, shaping, and maintenance. Professional beard trimming with premium products.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/european-brutal-man-with-beard-cut-barbershop_343596-4701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/european-brutal-man-with-beard-cut-barbershop_343596-4701.jpg?_wi=2",
|
||||
imageAlt: "Beard styling",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Hair Treatment",
|
||||
description: "Advanced hair treatments including scalp therapy and protein treatment for healthy, strong hair.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-female_1301-1121.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-female_1301-1121.jpg?_wi=2",
|
||||
imageAlt: "Men hair treatment",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Facial & Skincare",
|
||||
description: "Professional facials and skincare treatments designed specifically for men's skin.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26013.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26013.jpg?_wi=3",
|
||||
imageAlt: "Men facial",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Head & Face Massage",
|
||||
description: "Relaxing head and face massage therapy for stress relief and complete wellness.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-applying-his-anti-aging-treatment_23-2149296487.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-applying-his-anti-aging-treatment_23-2149296487.jpg?_wi=2",
|
||||
imageAlt: "Massage therapy",
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user