Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 934bdcdd29 | |||
| 8eb6b01fbb | |||
| 5d510543a2 | |||
| a4495fb574 | |||
| d8e56c980b | |||
| c6489f0919 | |||
| b2c1b16f51 | |||
| 27b266c795 | |||
| c4bcbda315 | |||
| a6962e6bd5 |
@@ -12,11 +12,10 @@ import { Award, ShieldCheck, Users, Home, Sparkles } from "lucide-react";
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Services", id: "/" },
|
||||
{ name: "Bridal Studio", id: "/" },
|
||||
{ name: "Gallery", id: "/" },
|
||||
{ name: "Pricing", id: "/" },
|
||||
{ name: "Contact", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
export default function AboutPage() {
|
||||
@@ -39,7 +38,7 @@ export default function AboutPage() {
|
||||
brandName="Luxe Beauty Studio"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Book Appointment", href: "/"}}
|
||||
text: "Book Appointment", href: "/contact"}}
|
||||
className="bg-gradient-to-r from-rose-100 to-orange-50 backdrop-blur-lg border border-white/20"
|
||||
buttonClassName="bg-gradient-to-r from-amber-600 to-orange-500 hover:shadow-lg hover:shadow-orange-300/50 text-white font-semibold transition-all duration-300"
|
||||
/>
|
||||
@@ -71,10 +70,10 @@ export default function AboutPage() {
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now", href: "/"},
|
||||
text: "Book Now", href: "/contact"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/professional-women-stylish-suit-office-with-tablet-device_23-2150167800.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/professional-women-stylish-suit-office-with-tablet-device_23-2150167800.jpg?_wi=1"
|
||||
imageAlt="Luxury Beauty Studio Team"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -94,11 +93,11 @@ export default function AboutPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Award-Winning Artists", description: "Our team consists of certified and award-winning makeup artists and stylists with international training", tag: "Excellence", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-holding-flowers_23-2149580422.jpg", imageAlt: "Award-Winning Artist"},
|
||||
id: "1", title: "Award-Winning Artists", description: "Our team consists of certified and award-winning makeup artists and stylists with international training", tag: "Excellence", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-holding-flowers_23-2149580422.jpg?_wi=1", imageAlt: "Award-Winning Artist"},
|
||||
{
|
||||
id: "2", title: "Personalized Consultations", description: "We offer free consultations to understand your vision, preferences, and ensure your complete satisfaction", tag: "Consultation", imageSrc: "http://img.b2bpic.net/free-photo/smiley-bride-getting-ready-front-view_23-2149721977.jpg", imageAlt: "Personalized Service"},
|
||||
id: "2", title: "Personalized Consultations", description: "We offer free consultations to understand your vision, preferences, and ensure your complete satisfaction", tag: "Consultation", imageSrc: "http://img.b2bpic.net/free-photo/smiley-bride-getting-ready-front-view_23-2149721977.jpg?_wi=2", imageAlt: "Personalized Service"},
|
||||
{
|
||||
id: "3", title: "Premium Hygiene Standards", description: "We maintain the highest standards of cleanliness and use sanitized tools and premium products", tag: "Hygiene", imageSrc: "http://img.b2bpic.net/free-photo/client-lies-salon-cosmetology-table-with-white-mask-her-face_343596-4298.jpg", imageAlt: "Professional Standards"},
|
||||
id: "3", title: "Premium Hygiene Standards", description: "We maintain the highest standards of cleanliness and use sanitized tools and premium products", tag: "Hygiene", imageSrc: "http://img.b2bpic.net/free-photo/client-lies-salon-cosmetology-table-with-white-mask-her-face_343596-4298.jpg?_wi=2", imageAlt: "Professional Standards"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
itemClassName="text-4xl md:text-5xl font-bold bg-gradient-to-r from-amber-700 to-orange-600 bg-clip-text text-transparent"
|
||||
@@ -132,7 +131,7 @@ export default function AboutPage() {
|
||||
required: true,
|
||||
}}
|
||||
buttonText="Send Message"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/beauty-invoice-poster-design_23-2149651367.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/beauty-invoice-poster-design_23-2149651367.jpg?_wi=1"
|
||||
imageAlt="Contact Us"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -154,19 +153,19 @@ export default function AboutPage() {
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Services", href: "/"},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "Gallery", href: "/"},
|
||||
label: "Gallery", href: "/gallery"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Pricing", href: "/"},
|
||||
label: "Pricing", href: "/pricing"},
|
||||
{
|
||||
label: "Book Appointment", href: "/"},
|
||||
label: "Book Appointment", href: "/contact"},
|
||||
{
|
||||
label: "Contact Us", href: "/about"},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Instagram", href: "https://instagram.com"},
|
||||
],
|
||||
@@ -180,7 +179,7 @@ export default function AboutPage() {
|
||||
{
|
||||
label: "Refund Policy", href: "#"},
|
||||
{
|
||||
label: "Contact", href: "/about"},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -68,7 +68,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fashion-beautiful-brunette-girl-with-bright-make-up_176420-711.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fashion-beautiful-brunette-girl-with-bright-make-up_176420-711.jpg?_wi=1"
|
||||
imageAlt="Bridal Makeup Transformation"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -129,16 +129,16 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Beauty Services", description: "Professional facials, cleansing, bleaching, threading, and waxing treatments designed to enhance your skin naturally", tag: "Beauty", imageSrc: "http://img.b2bpic.net/free-photo/client-lies-salon-cosmetology-table-with-white-mask-her-face_343596-4298.jpg", imageAlt: "Beauty Facial Treatment"
|
||||
id: "1", title: "Beauty Services", description: "Professional facials, cleansing, bleaching, threading, and waxing treatments designed to enhance your skin naturally", tag: "Beauty", imageSrc: "http://img.b2bpic.net/free-photo/client-lies-salon-cosmetology-table-with-white-mask-her-face_343596-4298.jpg?_wi=1", imageAlt: "Beauty Facial Treatment"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Hair Services", description: "Expert haircuts, treatments, coloring, and keratin services to transform your locks with premium products", tag: "Hair", imageSrc: "http://img.b2bpic.net/free-photo/beautiufl-caucasian-lady-went-home-sits-armchair-th-living-room_132075-9638.jpg", imageAlt: "Professional Hairstyling"
|
||||
id: "2", title: "Hair Services", description: "Expert haircuts, treatments, coloring, and keratin services to transform your locks with premium products", tag: "Hair", imageSrc: "http://img.b2bpic.net/free-photo/beautiufl-caucasian-lady-went-home-sits-armchair-th-living-room_132075-9638.jpg?_wi=1", imageAlt: "Professional Hairstyling"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Bridal Services", description: "Complete bridal makeup, pre-bridal packages, and groom styling for your perfect wedding day", tag: "Bridal", imageSrc: "http://img.b2bpic.net/free-photo/cosmetologist-applying-product-client_23-2148398573.jpg", imageAlt: "Bridal Makeup Services"
|
||||
id: "3", title: "Bridal Services", description: "Complete bridal makeup, pre-bridal packages, and groom styling for your perfect wedding day", tag: "Bridal", imageSrc: "http://img.b2bpic.net/free-photo/cosmetologist-applying-product-client_23-2148398573.jpg?_wi=1", imageAlt: "Bridal Makeup Services"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Boutique Collection", description: "Designer lehengas, bridal dresses, and custom stitching services curated for your special occasions", tag: "Boutique", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-long-brown-curly-hair-sitting-dressing-room-wardrobe-shocked-disappointed-doesn-t-know-what-wear-hard-make-choice-model-with-elegant-look-black-fancy-dress_197531-1677.jpg", imageAlt: "Designer Bridal Wear"
|
||||
id: "4", title: "Boutique Collection", description: "Designer lehengas, bridal dresses, and custom stitching services curated for your special occasions", tag: "Boutique", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-long-brown-curly-hair-sitting-dressing-room-wardrobe-shocked-disappointed-doesn-t-know-what-wear-hard-make-choice-model-with-elegant-look-black-fancy-dress_197531-1677.jpg?_wi=1", imageAlt: "Designer Bridal Wear"
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -187,7 +187,7 @@ export default function HomePage() {
|
||||
id: "1", name: "Priya Sharma", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-holding-flowers_23-2149580422.jpg?_wi=1", imageAlt: "Priya Sharma"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Anjali Verma", imageSrc: "http://img.b2bpic.net/free-photo/smiley-bride-getting-ready-front-view_23-2149721977.jpg", imageAlt: "Anjali Verma"
|
||||
id: "2", name: "Anjali Verma", imageSrc: "http://img.b2bpic.net/free-photo/smiley-bride-getting-ready-front-view_23-2149721977.jpg?_wi=1", imageAlt: "Anjali Verma"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Divya Patel", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-girl-getting-make-up-from-friend_23-2148299455.jpg", imageAlt: "Divya Patel"
|
||||
|
||||
@@ -15,7 +15,6 @@ export default function ServicesPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Bridal Studio", id: "/bridal" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
@@ -61,7 +60,7 @@ export default function ServicesPage() {
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<div id="nav" data-section="nav" className="fixed top-0 left-0 right-0 z-50">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Luxe Beauty Studio"
|
||||
navItems={navItems.map((item) => ({
|
||||
@@ -75,7 +74,7 @@ export default function ServicesPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero" className="relative min-h-screen bg-gradient-to-br from-white via-amber-50 to-orange-50">
|
||||
<div id="hero" data-section="hero" className="relative min-h-screen bg-gradient-to-br from-white via-amber-50 to-orange-50 pt-24">
|
||||
<HeroSplit
|
||||
title="Our Premium Services"
|
||||
description="Discover our comprehensive range of beauty services tailored to enhance your natural beauty and celebrate special moments. Each service is crafted with precision and care by our expert team."
|
||||
@@ -88,7 +87,7 @@ export default function ServicesPage() {
|
||||
{ text: "View Pricing", href: "/pricing" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fashion-beautiful-brunette-girl-with-bright-make-up_176420-711.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fashion-beautiful-brunette-girl-with-bright-make-up_176420-711.jpg?_wi=2"
|
||||
imageAlt="Premium Beauty Services"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -99,7 +98,7 @@ export default function ServicesPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services" className="relative bg-white">
|
||||
<div id="services" data-section="services" className="relative bg-white py-16 md:py-24">
|
||||
<FeatureCardMedia
|
||||
title="Beauty & Wellness Offerings"
|
||||
description="From skincare to hair treatments and complete bridal transformations, our services are designed to make you feel confident and radiant"
|
||||
@@ -109,13 +108,13 @@ export default function ServicesPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Beauty Services", description: "Professional facials, cleansing, bleaching, threading, and waxing treatments designed to enhance your skin naturally", tag: "Beauty", imageSrc: "http://img.b2bpic.net/free-photo/client-lies-salon-cosmetology-table-with-white-mask-her-face_343596-4298.jpg", imageAlt: "Beauty Facial Treatment"},
|
||||
id: "1", title: "Beauty Services", description: "Professional facials, cleansing, bleaching, threading, and waxing treatments designed to enhance your skin naturally", tag: "Beauty", imageSrc: "http://img.b2bpic.net/free-photo/client-lies-salon-cosmetology-table-with-white-mask-her-face_343596-4298.jpg?_wi=3", imageAlt: "Beauty Facial Treatment"},
|
||||
{
|
||||
id: "2", title: "Hair Services", description: "Expert haircuts, treatments, coloring, and keratin services to transform your locks with premium products", tag: "Hair", imageSrc: "http://img.b2bpic.net/free-photo/beautiufl-caucasian-lady-went-home-sits-armchair-th-living-room_132075-9638.jpg", imageAlt: "Professional Hairstyling"},
|
||||
id: "2", title: "Hair Services", description: "Expert haircuts, treatments, coloring, and keratin services to transform your locks with premium products", tag: "Hair", imageSrc: "http://img.b2bpic.net/free-photo/beautiufl-caucasian-lady-went-home-sits-armchair-th-living-room_132075-9638.jpg?_wi=2", imageAlt: "Professional Hairstyling"},
|
||||
{
|
||||
id: "3", title: "Bridal Services", description: "Complete bridal makeup, pre-bridal packages, and groom styling for your perfect wedding day", tag: "Bridal", imageSrc: "http://img.b2bpic.net/free-photo/cosmetologist-applying-product-client_23-2148398573.jpg", imageAlt: "Bridal Makeup Services"},
|
||||
id: "3", title: "Bridal Services", description: "Complete bridal makeup, pre-bridal packages, and groom styling for your perfect wedding day", tag: "Bridal", imageSrc: "http://img.b2bpic.net/free-photo/cosmetologist-applying-product-client_23-2148398573.jpg?_wi=2", imageAlt: "Bridal Makeup Services"},
|
||||
{
|
||||
id: "4", title: "Boutique Collection", description: "Designer lehengas, bridal dresses, and custom stitching services curated for your special occasions", tag: "Boutique", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-long-brown-curly-hair-sitting-dressing-room-wardrobe-shocked-disappointed-doesn-t-know-what-wear-hard-make-choice-model-with-elegant-look-black-fancy-dress_197531-1677.jpg", imageAlt: "Designer Bridal Wear"},
|
||||
id: "4", title: "Boutique Collection", description: "Designer lehengas, bridal dresses, and custom stitching services curated for your special occasions", tag: "Boutique", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-long-brown-curly-hair-sitting-dressing-room-wardrobe-shocked-disappointed-doesn-t-know-what-wear-hard-make-choice-model-with-elegant-look-black-fancy-dress_197531-1677.jpg?_wi=2", imageAlt: "Designer Bridal Wear"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
itemClassName="text-4xl md:text-5xl font-bold bg-gradient-to-r from-amber-700 to-orange-600 bg-clip-text text-transparent"
|
||||
@@ -124,7 +123,7 @@ export default function ServicesPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics" className="relative bg-gradient-to-br from-white via-amber-50 to-white">
|
||||
<div id="metrics" data-section="metrics" className="relative bg-gradient-to-br from-white via-amber-50 to-white py-16 md:py-24">
|
||||
<MetricCardEleven
|
||||
title="Why Choose Luxe Beauty Studio"
|
||||
description="Our commitment to excellence and customer satisfaction sets us apart in the beauty industry"
|
||||
@@ -134,11 +133,11 @@ export default function ServicesPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "5000+", title: "Happy Brides", description: "Transformed with our premium bridal services", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-holding-flowers_23-2149580422.jpg", imageAlt: "Happy Bride"},
|
||||
id: "1", value: "5000+", title: "Happy Brides", description: "Transformed with our premium bridal services", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-holding-flowers_23-2149580422.jpg?_wi=2", imageAlt: "Happy Bride"},
|
||||
{
|
||||
id: "2", value: "98%", title: "Satisfaction Rate", description: "Clients consistently rate us excellent", imageSrc: "http://img.b2bpic.net/free-photo/master-class-make-up-girl-makes-make-up-her-friend_1321-1461.jpg", imageAlt: "Satisfaction"},
|
||||
{
|
||||
id: "3", value: "500+", title: "Monthly Clients", description: "Trust our studio for beauty services", imageSrc: "http://img.b2bpic.net/free-photo/professional-women-stylish-suit-office-with-tablet-device_23-2150167800.jpg", imageAlt: "Clients"},
|
||||
id: "3", value: "500+", title: "Monthly Clients", description: "Trust our studio for beauty services", imageSrc: "http://img.b2bpic.net/free-photo/professional-women-stylish-suit-office-with-tablet-device_23-2150167800.jpg?_wi=2", imageAlt: "Clients"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textBoxTitleClassName="text-4xl md:text-5xl font-bold bg-gradient-to-r from-amber-700 to-orange-600 bg-clip-text text-transparent"
|
||||
@@ -146,7 +145,7 @@ export default function ServicesPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact" className="relative bg-gradient-to-r from-amber-50 to-orange-50">
|
||||
<div id="contact" data-section="contact" className="relative bg-gradient-to-r from-amber-50 to-orange-50 py-16 md:py-24">
|
||||
<ContactSplitForm
|
||||
title="Book Your Beauty Appointment"
|
||||
description="Schedule your transformation today. Contact us to reserve your preferred date and time with our expert beauty professionals."
|
||||
@@ -170,7 +169,7 @@ export default function ServicesPage() {
|
||||
required: true,
|
||||
}}
|
||||
buttonText="Confirm Booking"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/beauty-invoice-poster-design_23-2149651367.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/beauty-invoice-poster-design_23-2149651367.jpg?_wi=2"
|
||||
imageAlt="Book Appointment"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user