4 Commits

Author SHA1 Message Date
fb56dfae41 Update src/app/page.tsx 2026-03-09 20:18:42 +00:00
26ce8ff8fa Update src/app/layout.tsx 2026-03-09 20:18:41 +00:00
41c3bbb0c6 Merge version_1 into main
Merge version_1 into main
2026-03-09 20:17:12 +00:00
03a0f3dd04 Merge version_1 into main
Merge version_1 into main
2026-03-09 20:15:37 +00:00
2 changed files with 21 additions and 1428 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -49,6 +49,13 @@ export default function HomePage() {
}, },
]; ];
const handleBookNowClick = () => {
const contactSection = document.getElementById('contact');
if (contactSection) {
contactSection.scrollIntoView({ behavior: 'smooth' });
}
};
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-bubble" defaultButtonVariant="hover-bubble"
@@ -84,7 +91,7 @@ export default function HomePage() {
{ {
text: "Call Now: 0908 338 883", href: "tel:+421908338883"}, text: "Call Now: 0908 338 883", href: "tel:+421908338883"},
{ {
text: "Check Availability", href: "#contact"}, text: "Book Now", onClick: handleBookNowClick},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
className="hero-section" className="hero-section"
@@ -262,4 +269,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }