Merge version_2 into main #4
@@ -9,9 +9,32 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Calendar, Heart, Sparkles, Star, Zap } from 'lucide-react';
|
||||
import { Calendar, Heart, Sparkles, Star, Zap, MapPin } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleBookSession = () => {
|
||||
const element = document.getElementById('contact');
|
||||
if (element) {
|
||||
element.scrollIntoView({ behavior: 'smooth' });
|
||||
}
|
||||
};
|
||||
|
||||
const handleServiceClick = (serviceId: string) => {
|
||||
const serviceMap: { [key: string]: string } = {
|
||||
'1': '/service-soul-mission',
|
||||
'2': '/service-life-alignment',
|
||||
'3': '/service-energy-healing'
|
||||
};
|
||||
const url = serviceMap[serviceId];
|
||||
if (url) {
|
||||
window.location.href = url;
|
||||
}
|
||||
};
|
||||
|
||||
const handleLocationClick = () => {
|
||||
window.open('https://www.google.com/maps/search/Wellington+Point+QLD+4160', '_blank');
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -36,7 +59,7 @@ export default function LandingPage() {
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Your Session", href: "#contact"
|
||||
text: "Book Your Session", onClick: handleBookSession
|
||||
}}
|
||||
className="fixed top-6 right-6 z-50"
|
||||
buttonClassName="bg-[#2c2c2c] text-white px-6 py-2 rounded-full font-medium hover:bg-[#1a1a1a] transition-colors"
|
||||
@@ -55,7 +78,7 @@ export default function LandingPage() {
|
||||
avatarText="⭐ 5.0 Rating | 32 Five-Star Reviews"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Book Your Session", href: "#contact" },
|
||||
{ text: "Book Your Session", onClick: handleBookSession },
|
||||
{ text: "Call 0458 120 388", href: "tel:0458120388" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -87,15 +110,15 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Soul Mission Readings", tags: ["Spiritual Insight", "45 mins"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-baby-fetus-womb_23-2151624531.jpg", imageAlt: "Soul Mission Readings"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-baby-fetus-womb_23-2151624531.jpg", imageAlt: "Soul Mission Readings", onFeatureClick: () => handleServiceClick('1')
|
||||
},
|
||||
{
|
||||
id: "2", title: "Life Alignment Coaching", tags: ["Transformational", "60 mins"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-performing-yoga-safari-vacation_107420-9663.jpg", imageAlt: "Life Alignment Coaching"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-performing-yoga-safari-vacation_107420-9663.jpg", imageAlt: "Life Alignment Coaching", onFeatureClick: () => handleServiceClick('2')
|
||||
},
|
||||
{
|
||||
id: "3", title: "Energy Healing Sessions", tags: ["Holistic Healing", "50 mins"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-woman-with-arms-outstretched-enjoying-freedom-while-relaxing-sand-beach-sunset_637285-1868.jpg", imageAlt: "Energy Healing Sessions"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-woman-with-arms-outstretched-enjoying-freedom-while-relaxing-sand-beach-sunset_637285-1868.jpg", imageAlt: "Energy Healing Sessions", onFeatureClick: () => handleServiceClick('3')
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -209,9 +232,9 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Soul Mission Readings", href: "#services" },
|
||||
{ label: "Life Alignment Coaching", href: "#services" },
|
||||
{ label: "Energy Healing Sessions", href: "#services" }
|
||||
{ label: "Soul Mission Readings", onClick: () => handleServiceClick('1') },
|
||||
{ label: "Life Alignment Coaching", onClick: () => handleServiceClick('2') },
|
||||
{ label: "Energy Healing Sessions", onClick: () => handleServiceClick('3') }
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -224,8 +247,8 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: 0458 120 388", href: "tel:0458120388" },
|
||||
{ label: "Location: Wellington Point, QLD 4160", href: "#" },
|
||||
{ label: "Book a Session", href: "#contact" }
|
||||
{ label: "Location: Wellington Point, QLD 4160", onClick: handleLocationClick },
|
||||
{ label: "Book a Session", onClick: handleBookSession }
|
||||
]
|
||||
}
|
||||
]}
|
||||
|
||||
164
src/app/service-energy-healing/page.tsx
Normal file
164
src/app/service-energy-healing/page.tsx
Normal file
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Tanita Sasha"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/" },
|
||||
{ name: "Reviews", id: "/" },
|
||||
{ name: "How It Works", id: "/" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Your Session", onClick: handleBookSession
|
||||
}}
|
||||
className="fixed top-6 right-6 z-50"
|
||||
buttonClassName="bg-[#2c2c2c] text-white px-6 py-2 rounded-full font-medium hover:bg-[#1a1a1a] transition-colors"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
title="Energy Healing Sessions"
|
||||
description="Experience deep holistic healing and energetic restoration. A 50-minute transformational session that helps release blockages and restore balance to your mind, body, and spirit."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg", alt: "Tanita Sasha, Life Coach"
|
||||
}
|
||||
]}
|
||||
avatarText="⭐ 5.0 Rating | 32 Five-Star Reviews"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Book Energy Healing Session", onClick: handleBookSession },
|
||||
{ text: "Call 0458 120 388", href: "tel:0458120388" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
ariaLabel="Energy Healing Sessions service page"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="What Is Energy Healing?"
|
||||
tagIcon={Heart}
|
||||
title="Restore Balance & Release What No Longer Serves You"
|
||||
description="Energy Healing is a holistic practice that works with your body's natural energy to promote healing, peace, and wholeness."
|
||||
subdescription="Over 50 minutes, Tanita uses her intuitive gifts to identify and release energetic blockages, trauma, and limiting patterns that may be holding you back. You'll leave feeling lighter, more peaceful, and deeply held. Perfect for stress relief, emotional healing, or spiritual development."
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/carefree-woman-with-arms-outstretched-enjoying-freedom-while-relaxing-sand-beach-sunset_637285-1868.jpg"
|
||||
imageAlt="Energy Healing Sessions"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="What is Energy Healing"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<TestimonialAboutCard
|
||||
tag="Ready To Feel More Aligned?"
|
||||
tagIcon={Star}
|
||||
title="Book Your 50-Minute Energy Healing Session Today"
|
||||
description="Available in-person in Wellington Point, QLD or online for clients worldwide. Limited availability each month."
|
||||
subdescription="Investment: Competitive rates for transformational healing that leaves you feeling renewed and at peace."
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sunrise-sea-beautiful-seascape_158595-6115.jpg?_wi=1"
|
||||
imageAlt="Beautiful sunrise representing new beginnings"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Call to action section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Book Your Energy Healing Session"
|
||||
description="Schedule your transformational 50-minute healing session. Tanita will confirm your booking within 24 hours."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Your Phone Number", required: true },
|
||||
{ name: "service_type", type: "text", placeholder: "In-person or Online?" }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tell Tanita what brought you to seek energy healing. What are you hoping to release, heal, or restore? Any specific areas of concern?", rows: 5,
|
||||
required: true
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sunrise-sea-beautiful-seascape_158595-6115.jpg?_wi=2"
|
||||
imageAlt="Peaceful nature setting"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Book Your Healing Session"
|
||||
ariaLabel="Contact form section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gleaming-lake-background-reflecting-sky_91128-4426.jpg"
|
||||
imageAlt="Footer background"
|
||||
logoText="Tanita Sasha"
|
||||
copyrightText="© 2025 Tanita Sasha. All rights reserved. | Warm energy. Real transformation."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Soul Mission Readings", href: "/service-soul-mission" },
|
||||
{ label: "Life Alignment Coaching", href: "/service-life-alignment" },
|
||||
{ label: "Energy Healing Sessions", href: "/service-energy-healing" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Testimonials", href: "/#testimonials" },
|
||||
{ label: "How It Works", href: "/#how-it-works" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: 0458 120 388", href: "tel:0458120388" },
|
||||
{ label: "Location: Wellington Point, QLD 4160", onClick: handleLocationClick },
|
||||
{ label: "Book a Session", onClick: handleBookSession }
|
||||
]
|
||||
}
|
||||
]}
|
||||
ariaLabel="Site footer"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
164
src/app/service-life-alignment/page.tsx
Normal file
164
src/app/service-life-alignment/page.tsx
Normal file
@@ -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 LifeAlignmentPage() {
|
||||
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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Tanita Sasha"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/" },
|
||||
{ name: "Reviews", id: "/" },
|
||||
{ name: "How It Works", id: "/" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Your Session", onClick: handleBookSession
|
||||
}}
|
||||
className="fixed top-6 right-6 z-50"
|
||||
buttonClassName="bg-[#2c2c2c] text-white px-6 py-2 rounded-full font-medium hover:bg-[#1a1a1a] transition-colors"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
title="Life Alignment Coaching"
|
||||
description="Transform your life through deep, personalized coaching sessions. A 60-minute transformational experience designed to help you realign with your authentic self and highest potential."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg", alt: "Tanita Sasha, Life Coach"
|
||||
}
|
||||
]}
|
||||
avatarText="⭐ 5.0 Rating | 32 Five-Star Reviews"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Book Alignment Coaching", onClick: handleBookSession },
|
||||
{ text: "Call 0458 120 388", href: "tel:0458120388" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
ariaLabel="Life Alignment Coaching service page"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="What Is Life Alignment Coaching?"
|
||||
tagIcon={Heart}
|
||||
title="Realign Your Life With Your Soul's Truth"
|
||||
description="Life Alignment Coaching is a transformational process designed to help you overcome limiting beliefs, clarify your values, and create lasting change."
|
||||
subdescription="Over 60 minutes, Tanita works with you to identify what's holding you back, reconnect with your authentic self, and create an actionable plan to move forward with clarity, confidence, and purpose. Perfect for transitions, decision-making, or anyone feeling stuck."
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-performing-yoga-safari-vacation_107420-9663.jpg"
|
||||
imageAlt="Life Alignment Coaching"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="What is Life Alignment Coaching"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<TestimonialAboutCard
|
||||
tag="Ready To Realign Your Life?"
|
||||
tagIcon={Star}
|
||||
title="Book Your 60-Minute Coaching Session Today"
|
||||
description="Available in-person in Wellington Point, QLD or online for clients worldwide. Limited availability each month."
|
||||
subdescription="Investment: Competitive rates for transformational coaching that creates real, lasting change in your life."
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sunrise-sea-beautiful-seascape_158595-6115.jpg?_wi=1"
|
||||
imageAlt="Beautiful sunrise representing new beginnings"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Call to action section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Book Your Life Alignment Coaching Session"
|
||||
description="Schedule your transformational 60-minute coaching session. Tanita will confirm your booking within 24 hours."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Your Phone Number", required: true },
|
||||
{ name: "service_type", type: "text", placeholder: "In-person or Online?" }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tell Tanita what areas of your life you'd like to align. What's currently challenging you? What would you like to achieve?", rows: 5,
|
||||
required: true
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sunrise-sea-beautiful-seascape_158595-6115.jpg?_wi=2"
|
||||
imageAlt="Peaceful nature setting"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Book Your Coaching Session"
|
||||
ariaLabel="Contact form section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gleaming-lake-background-reflecting-sky_91128-4426.jpg"
|
||||
imageAlt="Footer background"
|
||||
logoText="Tanita Sasha"
|
||||
copyrightText="© 2025 Tanita Sasha. All rights reserved. | Warm energy. Real transformation."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Soul Mission Readings", href: "/service-soul-mission" },
|
||||
{ label: "Life Alignment Coaching", href: "/service-life-alignment" },
|
||||
{ label: "Energy Healing Sessions", href: "/service-energy-healing" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Testimonials", href: "/#testimonials" },
|
||||
{ label: "How It Works", href: "/#how-it-works" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: 0458 120 388", href: "tel:0458120388" },
|
||||
{ label: "Location: Wellington Point, QLD 4160", onClick: handleLocationClick },
|
||||
{ label: "Book a Session", onClick: handleBookSession }
|
||||
]
|
||||
}
|
||||
]}
|
||||
ariaLabel="Site footer"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
164
src/app/service-soul-mission/page.tsx
Normal file
164
src/app/service-soul-mission/page.tsx
Normal file
@@ -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 SoulMissionPage() {
|
||||
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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Tanita Sasha"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/" },
|
||||
{ name: "Reviews", id: "/" },
|
||||
{ name: "How It Works", id: "/" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Your Session", onClick: handleBookSession
|
||||
}}
|
||||
className="fixed top-6 right-6 z-50"
|
||||
buttonClassName="bg-[#2c2c2c] text-white px-6 py-2 rounded-full font-medium hover:bg-[#1a1a1a] transition-colors"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
title="Soul Mission Readings"
|
||||
description="Discover your true purpose and life's mission through guided spiritual insight. A 45-minute transformational session with Tanita Sasha."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg", alt: "Tanita Sasha, Life Coach"
|
||||
}
|
||||
]}
|
||||
avatarText="⭐ 5.0 Rating | 32 Five-Star Reviews"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Book Soul Mission Reading", onClick: handleBookSession },
|
||||
{ text: "Call 0458 120 388", href: "tel:0458120388" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
ariaLabel="Soul Mission Readings service page"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="What Is A Soul Mission Reading?"
|
||||
tagIcon={Heart}
|
||||
title="Unlock the Blueprint of Your Soul's Purpose"
|
||||
description="Soul Mission Readings are profound spiritual sessions designed to illuminate your life's true calling and unique gifts."
|
||||
subdescription="Through deep intuitive work, Tanita helps you understand why you're here, what you're meant to do, and how to align your life with your soul's highest purpose. Perfect for anyone feeling lost, searching for direction, or ready to step into their authentic power."
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/futuristic-baby-fetus-womb_23-2151624531.jpg"
|
||||
imageAlt="Soul Mission Readings"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="What is Soul Mission Reading"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<TestimonialAboutCard
|
||||
tag="Ready To Discover Your Soul's Mission?"
|
||||
tagIcon={Star}
|
||||
title="Book Your 45-Minute Reading Today"
|
||||
description="Available in-person in Wellington Point, QLD or online for clients worldwide. Limited availability each month."
|
||||
subdescription="Investment: Competitive rates for transformational spiritual guidance that will change the way you see yourself and your life."
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sunrise-sea-beautiful-seascape_158595-6115.jpg?_wi=1"
|
||||
imageAlt="Beautiful sunrise representing new beginnings"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Call to action section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Book Your Soul Mission Reading"
|
||||
description="Schedule your transformational 45-minute session. Tanita will confirm your booking within 24 hours."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Your Phone Number", required: true },
|
||||
{ name: "service_type", type: "text", placeholder: "In-person or Online?" }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tell Tanita what you're hoping to discover about your soul's mission. What questions or areas would you like explored?", rows: 5,
|
||||
required: true
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sunrise-sea-beautiful-seascape_158595-6115.jpg?_wi=2"
|
||||
imageAlt="Peaceful nature setting"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Book Your Reading"
|
||||
ariaLabel="Contact form section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gleaming-lake-background-reflecting-sky_91128-4426.jpg"
|
||||
imageAlt="Footer background"
|
||||
logoText="Tanita Sasha"
|
||||
copyrightText="© 2025 Tanita Sasha. All rights reserved. | Warm energy. Real transformation."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Soul Mission Readings", href: "/service-soul-mission" },
|
||||
{ label: "Life Alignment Coaching", href: "/service-life-alignment" },
|
||||
{ label: "Energy Healing Sessions", href: "/service-energy-healing" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Testimonials", href: "/#testimonials" },
|
||||
{ label: "How It Works", href: "/#how-it-works" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: 0458 120 388", href: "tel:0458120388" },
|
||||
{ label: "Location: Wellington Point, QLD 4160", onClick: handleLocationClick },
|
||||
{ label: "Book a Session", onClick: handleBookSession }
|
||||
]
|
||||
}
|
||||
]}
|
||||
ariaLabel="Site footer"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user