Add src/app/service-soul-mission/page.tsx
This commit is contained in:
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