Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 49a977d155 |
218
src/app/page.tsx
218
src/app/page.tsx
@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
@@ -33,25 +33,15 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
},
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "Stylist",
|
||||
id: "team",
|
||||
},
|
||||
name: "Stylist", id: "team"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Reviews", id: "testimonials"},
|
||||
{
|
||||
name: "Location",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Location", id: "contact"},
|
||||
]}
|
||||
brandName="UR Unisex Salon"
|
||||
/>
|
||||
@@ -63,9 +53,7 @@ export default function LandingPage() {
|
||||
description="Your Style Starts Here. Experience premium hair care in the heart of Bikaner."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Appointment",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Book Appointment", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/venetian-mask-with-long-nose-golden-fabric_23-2147595756.jpg"
|
||||
imageAlt="UR Unisex Salon Luxury Interior"
|
||||
@@ -93,26 +81,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
members={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Manish",
|
||||
role: "Lead Stylist",
|
||||
description: "Expert in precision layers and texture styling.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/latino-hair-salon-owner-preparing-clients_23-2150286080.jpg",
|
||||
},
|
||||
id: "t1", name: "Manish", role: "Lead Stylist", description: "Expert in precision layers and texture styling.", imageSrc: "http://img.b2bpic.net/free-photo/latino-hair-salon-owner-preparing-clients_23-2150286080.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Priya",
|
||||
role: "Senior Stylist",
|
||||
description: "Specialist in modern cuts and chemical treatments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-handsome-barber-wearing-uniform-holding-scissors-isolated-purple-wall_141793-94222.jpg",
|
||||
},
|
||||
id: "t2", name: "Priya", role: "Senior Stylist", description: "Specialist in modern cuts and chemical treatments.", imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-handsome-barber-wearing-uniform-holding-scissors-isolated-purple-wall_141793-94222.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Rahul",
|
||||
role: "Barber Artist",
|
||||
description: "Master of classic fades and modern grooming.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-young-male-barber-wearing-glasses-red-shirt-barber-apron-holding-barbering-tools-looking-camera-showing-thumb-up-isolated-blue-background_141793-138548.jpg",
|
||||
},
|
||||
id: "t3", name: "Rahul", role: "Barber Artist", description: "Master of classic fades and modern grooming.", imageSrc: "http://img.b2bpic.net/free-photo/excited-young-male-barber-wearing-glasses-red-shirt-barber-apron-holding-barbering-tools-looking-camera-showing-thumb-up-isolated-blue-background_141793-138548.jpg"},
|
||||
]}
|
||||
title="Our Expert Stylists"
|
||||
description="Meet our dedicated artists who transform hair with passion and precision."
|
||||
@@ -126,26 +99,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Haircut",
|
||||
subtitle: "Precision cuts tailored to your face shape.",
|
||||
category: "Styling",
|
||||
value: "Starting at ₹500",
|
||||
},
|
||||
id: "f1", title: "Haircut", subtitle: "Precision cuts tailored to your face shape.", category: "Styling", value: "Starting at ₹500"},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Texture Styling",
|
||||
subtitle: "Add volume and definition to your hair.",
|
||||
category: "Styling",
|
||||
value: "Starting at ₹800",
|
||||
},
|
||||
id: "f2", title: "Texture Styling", subtitle: "Add volume and definition to your hair.", category: "Styling", value: "Starting at ₹800"},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Perming",
|
||||
subtitle: "Long-lasting waves for a refined look.",
|
||||
category: "Treatment",
|
||||
value: "Starting at ₹1500",
|
||||
},
|
||||
id: "f3", title: "Perming", subtitle: "Long-lasting waves for a refined look.", category: "Treatment", value: "Starting at ₹1500"},
|
||||
]}
|
||||
title="Signature Services"
|
||||
description="Precision styling tailored for the modern individual."
|
||||
@@ -160,59 +118,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "UR Salon",
|
||||
name: "Layer Cut Reveal",
|
||||
price: "Expert Style",
|
||||
rating: 5,
|
||||
reviewCount: "1.2k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-dries-long-hair-with-blue-dryer-bathroom-home-blowout-lifestyle_169016-69602.jpg",
|
||||
},
|
||||
id: "p1", brand: "UR Salon", name: "Layer Cut Reveal", price: "Expert Style", rating: 5,
|
||||
reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/woman-dries-long-hair-with-blue-dryer-bathroom-home-blowout-lifestyle_169016-69602.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "UR Salon",
|
||||
name: "Modern Perm",
|
||||
price: "Salon Finish",
|
||||
rating: 5,
|
||||
reviewCount: "800",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-texture-cream_23-2149409578.jpg",
|
||||
},
|
||||
id: "p2", brand: "UR Salon", name: "Modern Perm", price: "Salon Finish", rating: 5,
|
||||
reviewCount: "800", imageSrc: "http://img.b2bpic.net/free-photo/close-up-texture-cream_23-2149409578.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "UR Salon",
|
||||
name: "Textured Fade",
|
||||
price: "Barber Finish",
|
||||
rating: 5,
|
||||
reviewCount: "950",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hairdresser-holding-hair-dryer_23-2149220573.jpg",
|
||||
},
|
||||
id: "p3", brand: "UR Salon", name: "Textured Fade", price: "Barber Finish", rating: 5,
|
||||
reviewCount: "950", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hairdresser-holding-hair-dryer_23-2149220573.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "UR Salon",
|
||||
name: "Full Color",
|
||||
price: "Professional",
|
||||
rating: 5,
|
||||
reviewCount: "600",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-bride-getting-hair-done_23-2149860770.jpg",
|
||||
},
|
||||
id: "p4", brand: "UR Salon", name: "Full Color", price: "Professional", rating: 5,
|
||||
reviewCount: "600", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-bride-getting-hair-done_23-2149860770.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "UR Salon",
|
||||
name: "Treatment Gloss",
|
||||
price: "Healthy Hair",
|
||||
rating: 5,
|
||||
reviewCount: "450",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-fur-coat-woman-winter-portrait-style-girl-fur-coat-luxury-accessory-make-up-close-up-model-new-year-hairstyle_343629-90.jpg",
|
||||
},
|
||||
id: "p5", brand: "UR Salon", name: "Treatment Gloss", price: "Healthy Hair", rating: 5,
|
||||
reviewCount: "450", imageSrc: "http://img.b2bpic.net/free-photo/girl-fur-coat-woman-winter-portrait-style-girl-fur-coat-luxury-accessory-make-up-close-up-model-new-year-hairstyle_343629-90.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "UR Salon",
|
||||
name: "Styling Session",
|
||||
price: "Daily Fresh",
|
||||
rating: 5,
|
||||
reviewCount: "2k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-hairdresser-coloring-hair-client_23-2147769784.jpg",
|
||||
},
|
||||
id: "p6", brand: "UR Salon", name: "Styling Session", price: "Daily Fresh", rating: 5,
|
||||
reviewCount: "2k", imageSrc: "http://img.b2bpic.net/free-photo/crop-hairdresser-coloring-hair-client_23-2147769784.jpg"},
|
||||
]}
|
||||
title="Transformations"
|
||||
description="See the results before and after your salon visit."
|
||||
@@ -226,23 +148,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: Award,
|
||||
title: "Years Experience",
|
||||
value: "10+",
|
||||
},
|
||||
id: "m1", icon: Award,
|
||||
title: "Years Experience", value: "10+"},
|
||||
{
|
||||
id: "m2",
|
||||
icon: Smile,
|
||||
title: "Happy Clients",
|
||||
value: "5k+",
|
||||
},
|
||||
id: "m2", icon: Smile,
|
||||
title: "Happy Clients", value: "5k+"},
|
||||
{
|
||||
id: "m3",
|
||||
icon: Star,
|
||||
title: "Avg Rating",
|
||||
value: "4.8",
|
||||
},
|
||||
id: "m3", icon: Star,
|
||||
title: "Avg Rating", value: "4.8"},
|
||||
]}
|
||||
title="Salon Experience"
|
||||
description="Quality meets relaxation in every corner."
|
||||
@@ -257,25 +170,15 @@ export default function LandingPage() {
|
||||
author="Priya Sharma"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/lesbian-couple-wearing-white-their-wedding_23-2150835701.jpg",
|
||||
alt: "Client 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/lesbian-couple-wearing-white-their-wedding_23-2150835701.jpg", alt: "Client 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-hair-stylist_23-2148113070.jpg",
|
||||
alt: "Client 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-hair-stylist_23-2148113070.jpg", alt: "Client 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-taking-care-boy-s-afro-hair_52683-90513.jpg",
|
||||
alt: "Client 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-taking-care-boy-s-afro-hair_52683-90513.jpg", alt: "Client 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-taking-care-boy-s-afro-hair_52683-90511.jpg",
|
||||
alt: "Client 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-taking-care-boy-s-afro-hair_52683-90511.jpg", alt: "Client 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiley-woman-home-getting-ready-haircut_23-2148817221.jpg",
|
||||
alt: "Client 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/smiley-woman-home-getting-ready-haircut_23-2148817221.jpg", alt: "Client 5"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="blur-reveal"
|
||||
@@ -289,59 +192,24 @@ export default function LandingPage() {
|
||||
description="Find us in the heart of Bikaner. Book your slot today."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
},
|
||||
name: "name", type: "text", placeholder: "Your Name"},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
},
|
||||
name: "email", type: "email", placeholder: "Email Address"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-nordic-minimalism-japanese-wabi-sabi-interior-design-blend_23-2151160165.jpg"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterLogoReveal
|
||||
logoText="UR Unisex Salon"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "#features",
|
||||
},
|
||||
{
|
||||
label: "Stylist",
|
||||
href: "#team",
|
||||
},
|
||||
{
|
||||
label: "Book Now",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
leftLink={{ text: "Book Now", href: "#contact" }}
|
||||
rightLink={{ text: "Privacy Policy", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user