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