Update src/app/page.tsx

This commit is contained in:
2026-06-03 19:07:45 +00:00
parent 83869eac51
commit bdb699c1c8

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
@@ -41,14 +41,12 @@ export default function LandingPage() {
name: "Reviews", id: "#reviews"},
{
name: "FAQ", id: "#faq"},
{
name: "Contact", id: "#contact"},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1axpni"
logoAlt="Pleasant Style Barbershop Logo"
brandName="Pleasant Style"
button={{
text: "Book Now", href: "#contact"
text: "Book Now", href: "#faq"
}}
/>
</div>
@@ -133,11 +131,11 @@ export default function LandingPage() {
{
title: "Beard Trims & Shaping", description: "Professional beard grooming services to keep your beard looking sharp, neat, and perfectly styled.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-man-barbershop_23-2148506245.jpg", imageAlt: "Beard trim and shaping"},
{
title: "Kids Haircuts", description: "Friendly and patient service for our younger clients, ensuring a comfortable experience and a great look.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-preschooler-boy-getting-haircut-children-hairdresser-with-scissors-comb-is-cutting-little-boy-room-with-loft-interior_613910-5696.jpg", imageAlt: "Kids haircut"},
title: "Kids Haircuts", description: "Friendly and patient service for our younger clients, ensuring a comfortable experience and a great look.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-preschooler-boy-getting-haircut-children-hairdresser-with-scissors-comb-is-cutting-little-boy-room-with-loft-interior_613910-5696.jpg", alt: "Kids haircut"},
{
title: "Hair Styling", description: "Finishing touches and product recommendations to ensure your hair looks its absolute best, every time.", imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-is-washing-man-s-hair_8353-11410.jpg", imageAlt: "Hair styling"},
title: "Hair Styling", description: "Finishing touches and product recommendations to ensure your hair looks its absolute best, every time.", imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-is-washing-man-s-hair_8353-11410.jpg", alt: "Hair styling"},
{
title: "Head Shaves", description: "For those who prefer a clean and smooth look, our expert barbers provide a meticulous head shave.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-barber-combing-moustache-client_23-2147778838.jpg", imageAlt: "Head shave"},
title: "Head Shaves", description: "For those who prefer a clean and smooth look, our expert barbers provide a meticulous head shave.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-barber-combing-moustache-client_23-2147778838.jpg", alt: "Head shave"},
]}
title="Our Signature Services"
description="From sharp fades to classic shaves and expert beard grooming, discover our full range of services designed for the modern gentleman."
@@ -205,30 +203,6 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Visit Us or Get in Touch"
description="We're located at 809 Pleasant St, Worcester, MA 01602. Feel free to call us at (508) 304-7217 during business hours or send us a message below for inquiries."
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email", type: "email", placeholder: "Your Email", required: true,
},
]}
textarea={{
name: "message", placeholder: "Your Message", rows: 4,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/portrait-bearded-young-man-sitting-cafe-using-mobile-phone_23-2148176693.jpg"
imageAlt="Pleasant Style Barbershop exterior"
mediaAnimation="opacity"
mediaPosition="right"
buttonText="Send Message"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
@@ -273,4 +247,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}