diff --git a/src/app/page.tsx b/src/app/page.tsx index ea7b576..ff8183b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,8 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { Calendar } from "lucide-react"; +import ContactText from '@/components/sections/contact/ContactText'; +import { Calendar, Phone } from "lucide-react"; export default function LandingPage() { return ( @@ -30,21 +31,13 @@ export default function LandingPage() { @@ -56,9 +49,7 @@ export default function LandingPage() { description="Experience the sharpest cuts and finest grooming in the city. Where tradition meets modern style." buttons={[ { - text: "Book Appointment", - href: "#contact", - }, + text: "Book Appointment", href: "#contact"}, ]} imageSrc="http://img.b2bpic.net/free-photo/front-view-barbershop-concept_23-2148506206.jpg" /> @@ -69,14 +60,9 @@ export default function LandingPage() { useInvertedBackground={true} heading={[ { - type: "text", - content: "Mastering the Art of Grooming", - }, + type: "text", content: "Mastering the Art of Grooming"}, { - type: "image", - src: "http://img.b2bpic.net/free-psd/barbershop-template-design_23-2151586247.jpg", - alt: "Barber tools", - }, + type: "image", src: "http://img.b2bpic.net/free-psd/barbershop-template-design_23-2151586247.jpg", alt: "Barber tools"}, ]} /> @@ -88,49 +74,22 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "classic", - title: "Classic Cut", - price: "$35", - period: "per session", - features: [ - "Haircut & Wash", - "Hot Towel", - "Neck Shave", - ], + id: "classic", title: "Classic Cut", price: "$35", period: "per session", features: [ + "Haircut & Wash", "Hot Towel", "Neck Shave"], button: { - text: "Book Now", - href: "#contact", - }, + text: "Book Now", href: "#contact"}, }, { - id: "beard", - title: "Beard Sculpting", - price: "$25", - period: "per session", - features: [ - "Beard Trim", - "Line Up", - "Beard Oil Application", - ], + id: "beard", title: "Beard Sculpting", price: "$25", period: "per session", features: [ + "Beard Trim", "Line Up", "Beard Oil Application"], button: { - text: "Book Now", - href: "#contact", - }, + text: "Book Now", href: "#contact"}, }, { - id: "full", - title: "The Full P.Cutz", - price: "$55", - period: "per session", - features: [ - "Haircut", - "Beard Trim", - "Straight Razor Shave", - ], + id: "full", title: "The Full P.Cutz", price: "$55", period: "per session", features: [ + "Haircut", "Beard Trim", "Straight Razor Shave"], button: { - text: "Book Now", - href: "#contact", - }, + text: "Book Now", href: "#contact"}, }, ]} title="Our Services" @@ -146,65 +105,43 @@ export default function LandingPage() { useInvertedBackground={true} testimonials={[ { - id: "1", - name: "John D.", - role: "Client", - company: "Local Regular", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205927.jpg", - }, + id: "1", name: "John D.", role: "Client", company: "Local Regular", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205927.jpg"}, { - id: "2", - name: "Mike S.", - role: "Client", - company: "Professional", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/people-happiness-emotions-concept-smiling-joyful-young-male-with-attractive-look-dressed-casual-white-t-shirt-looks-gladfully-aside-poses-against-studio-background-with-copy-space_273609-3426.jpg", - }, + id: "2", name: "Mike S.", role: "Client", company: "Professional", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/people-happiness-emotions-concept-smiling-joyful-young-male-with-attractive-look-dressed-casual-white-t-shirt-looks-gladfully-aside-poses-against-studio-background-with-copy-space_273609-3426.jpg"}, { - id: "3", - name: "Alex R.", - role: "Client", - company: "Visitor", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg", - }, - { - id: "4", - name: "David W.", - role: "Client", - company: "Long-time Client", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-photo-shoot-pensive-man-with-beard-black-white-photo-with-low-contrast_613910-14630.jpg", - }, + id: "3", name: "Alex R.", role: "Client", company: "Visitor", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-handsome-smiling-model-sexy-stylish-man-dressed-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-isolated_158538-26713.jpg"}, ]} title="What Our Clients Say" description="Hear why P.Cutz is the top rated shop in the neighborhood." /> +
+ +
+
@@ -213,25 +150,17 @@ export default function LandingPage() { ); -} +} \ No newline at end of file