Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-05-09 13:34:08 +00:00
2 changed files with 9 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function BookingPage() {
@@ -61,11 +61,12 @@ export default function BookingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactCenter
tag="Need Help?"
title="Contact Us"
description="Have questions about our availability? Get in touch with our team."
buttons={[{ text: "Contact Us", href: "#" }]}
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
/>
</div>

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import ContactText from '@/components/sections/contact/ContactText';
import ContactCenter from '@/components/sections/contact/ContactCenter';
export default function PaymentPage() {
return (
@@ -46,8 +46,10 @@ export default function PaymentPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
text="Need help with payments? Contact us today."
<ContactCenter
tag="Need Help?"
title="Contact Support"
description="Need help with payments? Contact us today."
background={{ variant: "gradient-bars" }}
useInvertedBackground={true}
/>
@@ -56,7 +58,6 @@ export default function PaymentPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[]}
logoText="Neelam Beauty Salon"
bottomLeftText="© 2026 Neelam Beauty Salon"
bottomRightText="All Rights Reserved"
/>