diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0f6a00b..2331d61 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,7 +12,7 @@ import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import TextAbout from '@/components/sections/about/TextAbout';
-import { Award, Scissors, Smile } from "lucide-react";
+import { Award, Scissors, Smile, Star, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -32,69 +32,29 @@ export default function LandingPage() {
@@ -103,12 +63,7 @@ export default function LandingPage() {
@@ -117,30 +72,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
- {
- title: "Precision Cuts",
- description: "Tailored haircuts to match your unique style.",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=iuxeya",
- buttonIcon: "Scissors",
- },
- {
- title: "Royal Shave",
- description: "Relaxing hot towel straight razor service.",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=h9w0pg",
- buttonIcon: "Zap",
- },
- {
- title: "Beard Sculpting",
- description: "Expert grooming for the perfect beard line.",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=u0rhz9",
- buttonIcon: "Star",
- },
- {
- title: "Scalp Therapy",
- description: "Revitalizing treatments for healthy hair.",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=a3lu5s",
- buttonIcon: "Award",
- },
+ { title: "Precision Cuts", description: "Tailored haircuts to match your unique style.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=iuxeya", buttonIcon: Scissors },
+ { title: "Royal Shave", description: "Relaxing hot towel straight razor service.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=h9w0pg", buttonIcon: Zap },
+ { title: "Beard Sculpting", description: "Expert grooming for the perfect beard line.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=u0rhz9", buttonIcon: Star },
+ { title: "Scalp Therapy", description: "Revitalizing treatments for healthy hair.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=a3lu5s", buttonIcon: Award },
]}
title="Signature Grooming"
description="Excellence in every cut and shave."
@@ -154,21 +89,9 @@ export default function LandingPage() {
tag="Expert Groomers"
membersAnimation="slide-up"
members={[
- {
- id: "1",
- name: "Marcus",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=32ixz4",
- },
- {
- id: "2",
- name: "Elena",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ihhya4",
- },
- {
- id: "3",
- name: "Jordan",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=spp1uj",
- },
+ { id: "1", name: "Marcus", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=32ixz4" },
+ { id: "2", name: "Elena", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ihhya4" },
+ { id: "3", name: "Jordan", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=spp1uj" },
]}
memberVariant="card"
/>
@@ -180,39 +103,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
plans={[
- {
- id: "cut",
- badge: "Popular",
- price: "$35",
- subtitle: "Haircut",
- features: [
- "Precision cut",
- "Hot towel",
- "Style",
- ],
- },
- {
- id: "shave",
- badge: "Add-on",
- price: "$25",
- subtitle: "Hot Shave",
- features: [
- "Straight razor",
- "Steam towel",
- "Aftercare",
- ],
- },
- {
- id: "full",
- badge: "Full Pack",
- price: "$55",
- subtitle: "The Backalive",
- features: [
- "Haircut & beard",
- "Scalp treatment",
- "Hot towel",
- ],
- },
+ { id: "cut", badge: "Popular", price: "$35", subtitle: "Haircut", features: ["Precision cut", "Hot towel", "Style"] },
+ { id: "shave", badge: "Add-on", price: "$25", subtitle: "Hot Shave", features: ["Straight razor", "Steam towel", "Aftercare"] },
+ { id: "full", badge: "Full Pack", price: "$55", subtitle: "The Backalive", features: ["Haircut & beard", "Scalp treatment", "Hot towel"] },
]}
title="Pricing & Services"
description="Professional grooming for every budget."
@@ -225,24 +118,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
metrics={[
- {
- id: "1",
- icon: Smile,
- title: "Happy Clients",
- value: "5000+",
- },
- {
- id: "2",
- icon: Scissors,
- title: "Cuts Weekly",
- value: "200+",
- },
- {
- id: "3",
- icon: Award,
- title: "Years Experience",
- value: "10+",
- },
+ { id: "1", icon: Smile, title: "Happy Clients", value: "5000+" },
+ { id: "2", icon: Scissors, title: "Cuts Weekly", value: "200+" },
+ { id: "3", icon: Award, title: "Years Experience", value: "10+" },
]}
title="By The Numbers"
description="Trusted by our community."
@@ -255,49 +133,15 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
- {
- id: "1",
- name: "Alex R.",
- handle: "@alex",
- testimonial: "Best fade I've ever had, hands down.",
- rating: 5,
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b47nd2",
- },
- {
- id: "2",
- name: "Jordan P.",
- handle: "@jordan",
- testimonial: "The hot towel shave is a must try.",
- rating: 5,
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9ikq38",
- },
- {
- id: "3",
- name: "Casey T.",
- handle: "@casey",
- testimonial: "Super clean and professional spot.",
- rating: 5,
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mfxaxi",
- },
- {
- id: "4",
- name: "Sam K.",
- handle: "@sam",
- testimonial: "Finally found my permanent barber.",
- rating: 5,
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6ks37z",
- },
- {
- id: "5",
- name: "Riley D.",
- handle: "@riley",
- testimonial: "Always consistent and friendly team.",
- rating: 5,
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ugyp1l",
- },
+ { id: "1", name: "Alex R.", handle: "@alex", testimonial: "Best fade I've ever had, hands down.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b47nd2" },
+ { id: "2", name: "Jordan P.", handle: "@jordan", testimonial: "The hot towel shave is a must try.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9ikq38" },
+ { id: "3", name: "Casey T.", handle: "@casey", testimonial: "Super clean and professional spot.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mfxaxi" },
+ { id: "4", name: "Sam K.", handle: "@sam", testimonial: "Finally found my permanent barber.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6ks37z" },
+ { id: "5", name: "Riley D.", handle: "@riley", testimonial: "Always consistent and friendly team.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ugyp1l" },
]}
showRating={true}
title="Words From Our Community"
+ description="What our clients say about us."
/>
@@ -307,23 +151,10 @@ export default function LandingPage() {
title="Visit Us Today"
description="Walk-ins welcome, or book ahead."
inputs={[
- {
- name: "name",
- type: "text",
- placeholder: "Your Name",
- required: true,
- },
- {
- name: "email",
- type: "email",
- placeholder: "Your Email",
- required: true,
- },
+ { name: "name", type: "text", placeholder: "Your Name", required: true },
+ { name: "email", type: "email", placeholder: "Your Email", required: true },
]}
- textarea={{
- name: "message",
- placeholder: "Any special requests?",
- }}
+ textarea={{ name: "message", placeholder: "Any special requests?" }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1srn2y"
/>
@@ -331,14 +162,8 @@ export default function LandingPage() {