diff --git a/src/app/service-energy-healing/page.tsx b/src/app/service-energy-healing/page.tsx new file mode 100644 index 0000000..cfa3c27 --- /dev/null +++ b/src/app/service-energy-healing/page.tsx @@ -0,0 +1,164 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Heart, Sparkles, Star } from 'lucide-react'; + +export default function EnergyHealingPage() { + const handleBookSession = () => { + const element = document.getElementById('contact'); + if (element) { + element.scrollIntoView({ behavior: 'smooth' }); + } + }; + + const handleLocationClick = () => { + window.open('https://www.google.com/maps/search/Wellington+Point+QLD+4160', '_blank'); + }; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}