Merge version_1 into main #1
310
src/app/page.tsx
310
src/app/page.tsx
@@ -31,34 +31,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Podcast",
|
||||
id: "podcast",
|
||||
},
|
||||
{
|
||||
name: "Community",
|
||||
id: "community",
|
||||
},
|
||||
{
|
||||
name: "Resources",
|
||||
id: "resources",
|
||||
},
|
||||
{
|
||||
name: "Events",
|
||||
id: "events",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Podcast", id: "podcast" },
|
||||
{ name: "Resources", id: "resources" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Community", id: "community" },
|
||||
{ name: "Events", id: "events" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="LDS Fireside"
|
||||
/>
|
||||
@@ -66,83 +46,33 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Faith, Healing, and Hope for LDS Singles"
|
||||
description="Real conversations navigating the spiritual, emotional, and family challenges LDS singles face after divorce, loss, or delayed marriage."
|
||||
kpis={[
|
||||
{
|
||||
value: "150+",
|
||||
label: "Episodes Recorded",
|
||||
},
|
||||
{
|
||||
value: "20k+",
|
||||
label: "Community Members",
|
||||
},
|
||||
{
|
||||
value: "50+",
|
||||
label: "Expert Guests",
|
||||
},
|
||||
{ value: "150+", label: "Episodes Recorded" },
|
||||
{ value: "20k+", label: "Community Members" },
|
||||
{ value: "50+", label: "Expert Guests" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Listen Now",
|
||||
href: "#podcast",
|
||||
},
|
||||
{
|
||||
text: "Join Community",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Listen Now", href: "#podcast" }, { text: "Join Community", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-woman-holding-drink-near-fireplace_23-2148337321.jpg"
|
||||
imageAlt="Cozy fireside atmosphere"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/serene-minimalist-room-decor-meditation-space_23-2151935102.jpg",
|
||||
alt: "Person 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/modern-minimalist-interior-design_23-2151913968.jpg",
|
||||
alt: "Person 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cozy-bedroom-with-warm-colors-natural-elements_23-2151965511.jpg",
|
||||
alt: "Person 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-albino-woman-sitting-table_23-2150171835.jpg",
|
||||
alt: "Person 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/home-comfort-rocking-chair-near-fireplace-photo-interior-room-rocking-chair-living-room-with-decorated-modern-fireplace_1391-214.jpg",
|
||||
alt: "Person 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/serene-minimalist-room-decor-meditation-space_23-2151935102.jpg", alt: "Person 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/modern-minimalist-interior-design_23-2151913968.jpg", alt: "Person 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/cozy-bedroom-with-warm-colors-natural-elements_23-2151965511.jpg", alt: "Person 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/side-view-albino-woman-sitting-table_23-2150171835.jpg", alt: "Person 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/home-comfort-rocking-chair-near-fireplace-photo-interior-room-rocking-chair-living-room-with-decorated-modern-fireplace_1391-214.jpg", alt: "Person 5" }
|
||||
]}
|
||||
avatarText="Join our growing community"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Faith-Centered",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Supportive Community",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Healing Journey",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Spiritual Growth",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Authentic Connections",
|
||||
},
|
||||
{ type: "text", text: "Faith-Centered" },
|
||||
{ type: "text", text: "Supportive Community" },
|
||||
{ type: "text", text: "Healing Journey" },
|
||||
{ type: "text", text: "Spiritual Growth" },
|
||||
{ type: "text", text: "Authentic Connections" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -154,24 +84,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Healing After Divorce",
|
||||
description: "Finding peace and trusting God again.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/window-shadow-bedroom-wall_23-2148870644.jpg",
|
||||
imageAlt: "Episode 1",
|
||||
},
|
||||
{
|
||||
title: "Temple & Sealing",
|
||||
description: "Questions and answers about eternal perspective.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-drinking-hot-tea_23-2149172524.jpg",
|
||||
imageAlt: "Episode 2",
|
||||
},
|
||||
{
|
||||
title: "Parenting Alone",
|
||||
description: "Strength for single parents in the Church.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-people-lounging-near-fireplace_23-2147738646.jpg",
|
||||
imageAlt: "Episode 3",
|
||||
},
|
||||
{ title: "Healing After Divorce", description: "Finding peace and trusting God again.", imageSrc: "http://img.b2bpic.net/free-photo/window-shadow-bedroom-wall_23-2148870644.jpg", imageAlt: "Episode 1" },
|
||||
{ title: "Temple & Sealing", description: "Questions and answers about eternal perspective.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-drinking-hot-tea_23-2149172524.jpg", imageAlt: "Episode 2" },
|
||||
{ title: "Parenting Alone", description: "Strength for single parents in the Church.", imageSrc: "http://img.b2bpic.net/free-photo/content-people-lounging-near-fireplace_23-2147738646.jpg", imageAlt: "Episode 3" }
|
||||
]}
|
||||
title="Latest Podcast Episodes"
|
||||
description="Explore our recent conversations about faith, divorce recovery, and finding hope in singleness."
|
||||
@@ -186,36 +101,9 @@ export default function LandingPage() {
|
||||
title="Featured Topics"
|
||||
description="Deep dives into the spiritual resources and emotional guidance you need."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Spiritual",
|
||||
title: "Healing Through Faith",
|
||||
excerpt: "Walking through heartbreak with Christ.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sunlit-oasis-aesthetic_23-2151949103.jpg",
|
||||
authorName: "Jane Doe",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiling-woman-sweater-posing-near-light-lamps_114579-81989.jpg",
|
||||
date: "Oct 12, 2023",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Emotional",
|
||||
title: "Co-Parenting Wisdom",
|
||||
excerpt: "Navigating family dynamics with grace.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/home-cozy-interior-room-with-books-dried-flowers-vase_169016-4248.jpg",
|
||||
authorName: "John Smith",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/middle-age-grey-haired-man-smiling-confident-making-selfie-by-camera-park_839833-1591.jpg",
|
||||
date: "Oct 05, 2023",
|
||||
},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Relationships",
|
||||
title: "Dating Again",
|
||||
excerpt: "Establishing boundaries and finding purpose.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/warm-light-sun-grungy-room_53876-129932.jpg",
|
||||
authorName: "Emily Rose",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/young-woman-yellow-sweater-her-bedroom_1303-11272.jpg",
|
||||
date: "Sep 28, 2023",
|
||||
},
|
||||
{ id: "b1", category: "Spiritual", title: "Healing Through Faith", excerpt: "Walking through heartbreak with Christ.", imageSrc: "http://img.b2bpic.net/free-photo/sunlit-oasis-aesthetic_23-2151949103.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/smiling-woman-sweater-posing-near-light-lamps_114579-81989.jpg", date: "Oct 12, 2023" },
|
||||
{ id: "b2", category: "Emotional", title: "Co-Parenting Wisdom", excerpt: "Navigating family dynamics with grace.", imageSrc: "http://img.b2bpic.net/free-photo/home-cozy-interior-room-with-books-dried-flowers-vase_169016-4248.jpg", authorName: "John Smith", authorAvatar: "http://img.b2bpic.net/free-photo/middle-age-grey-haired-man-smiling-confident-making-selfie-by-camera-park_839833-1591.jpg", date: "Oct 05, 2023" },
|
||||
{ id: "b3", category: "Relationships", title: "Dating Again", excerpt: "Establishing boundaries and finding purpose.", imageSrc: "http://img.b2bpic.net/free-photo/warm-light-sun-grungy-room_53876-129932.jpg", authorName: "Emily Rose", authorAvatar: "http://img.b2bpic.net/free-photo/young-woman-yellow-sweater-her-bedroom_1303-11272.jpg", date: "Sep 28, 2023" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -226,41 +114,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah J.",
|
||||
handle: "@lds-single",
|
||||
testimonial: "This podcast helped me realize I'm not alone.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-dark-curly-hair-close-up-portrait-warmly-dressed-scarf-winter-frost-sunny-day-street-city_1321-2338.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mike R.",
|
||||
handle: "@hope-seeker",
|
||||
testimonial: "Honest conversations that saved my faith journey.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-dark-green-tshirt-smiles-widely-outside-closeup-portrait-young-guy-laughs-sea-background_197531-30051.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Anna L.",
|
||||
handle: "@faith-strong",
|
||||
testimonial: "Finally, a place that understands single parenting.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-women-friends-having-fun-outdoors_23-2148629760.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David K.",
|
||||
handle: "@journey-man",
|
||||
testimonial: "Healing conversations that brought me peace.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-man-man-laughs-sly-smile_1321-3788.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Beth S.",
|
||||
handle: "@peace-found",
|
||||
testimonial: "Deeply spiritual and always encouraging.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Sarah J.", handle: "@lds-single", testimonial: "This podcast helped me realize I'm not alone.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-dark-curly-hair-close-up-portrait-warmly-dressed-scarf-winter-frost-sunny-day-street-city_1321-2338.jpg" },
|
||||
{ id: "t2", name: "Mike R.", handle: "@hope-seeker", testimonial: "Honest conversations that saved my faith journey.", imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-dark-green-tshirt-smiles-widely-outside-closeup-portrait-young-guy-laughs-sea-background_197531-30051.jpg" },
|
||||
{ id: "t3", name: "Anna L.", handle: "@faith-strong", testimonial: "Finally, a place that understands single parenting.", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-women-friends-having-fun-outdoors_23-2148629760.jpg" },
|
||||
{ id: "t4", name: "David K.", handle: "@journey-man", testimonial: "Healing conversations that brought me peace.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-man-man-laughs-sly-smile_1321-3788.jpg" },
|
||||
{ id: "t5", name: "Beth S.", handle: "@peace-found", testimonial: "Deeply spiritual and always encouraging.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg" }
|
||||
]}
|
||||
title="Finding Hope Together"
|
||||
description="Stories from members who found community and understanding here."
|
||||
@@ -273,18 +131,9 @@ export default function LandingPage() {
|
||||
title="About Our Fireside"
|
||||
description="LDS Fireside was created to be a safe, compassionate, and faithful platform where single adults can find spiritual growth and authentic connection."
|
||||
metrics={[
|
||||
{
|
||||
value: "100%",
|
||||
title: "Faith-Centered",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
title: "Supportive Access",
|
||||
},
|
||||
{
|
||||
value: "Always",
|
||||
title: "Safe Haven",
|
||||
},
|
||||
{ value: "100%", title: "Faith-Centered" },
|
||||
{ value: "24/7", title: "Supportive Access" },
|
||||
{ value: "Always", title: "Safe Haven" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-candles-table-living-room_169016-5610.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -299,27 +148,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "Dr. Sarah",
|
||||
role: "Counselor",
|
||||
description: "Expert in LDS faith-based trauma recovery.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-reading-bed_23-2149879895.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "John Paul",
|
||||
role: "Host",
|
||||
description: "Dedicated to honest single parent discussions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-explorer-embraces-solitude-high-altitude-wilderness_482257-125852.jpg",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
name: "Sister Mary",
|
||||
role: "Resource Lead",
|
||||
description: "Scriptural guidance and spiritual support.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friendly-brother-sister-embrace-affectionately_273609-20320.jpg",
|
||||
},
|
||||
{ id: "m1", name: "Dr. Sarah", role: "Counselor", description: "Expert in LDS faith-based trauma recovery.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-reading-bed_23-2149879895.jpg" },
|
||||
{ id: "m2", name: "John Paul", role: "Host", description: "Dedicated to honest single parent discussions.", imageSrc: "http://img.b2bpic.net/free-photo/male-explorer-embraces-solitude-high-altitude-wilderness_482257-125852.jpg" },
|
||||
{ id: "m3", name: "Sister Mary", role: "Resource Lead", description: "Scriptural guidance and spiritual support.", imageSrc: "http://img.b2bpic.net/free-photo/friendly-brother-sister-embrace-affectionately_273609-20320.jpg" }
|
||||
]}
|
||||
title="Community Voices"
|
||||
description="Meet our team and guests committed to walking the path together."
|
||||
@@ -332,34 +163,21 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Virtual Fireside - Oct 25",
|
||||
content: "Join us on Zoom for a heart-to-heart discussion.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Singles Retreat - Nov 10",
|
||||
content: "A day of spiritual renewal and connection.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Prayer Group - Weekly",
|
||||
content: "Daily prayer support for members of our community.",
|
||||
},
|
||||
{ id: "f1", title: "Virtual Fireside - Oct 25", content: "Join us on Zoom for a heart-to-heart discussion." },
|
||||
{ id: "f2", title: "Singles Retreat - Nov 10", content: "A day of spiritual renewal and connection." },
|
||||
{ id: "f3", title: "Prayer Group - Weekly", content: "Daily prayer support for members of our community." }
|
||||
]}
|
||||
title="Upcoming Events"
|
||||
description="Join our virtual firesides and community discussions."
|
||||
faqsAnimation="slide-up"
|
||||
animationType="smooth"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="Stay Connected"
|
||||
title="Receive Uplifting Episodes"
|
||||
description="Sign up for weekly encouragement, resources, and community updates."
|
||||
@@ -373,44 +191,12 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="LDS Fireside"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Podcast",
|
||||
href: "#podcast",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Community",
|
||||
href: "#community",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#events",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Podcast", href: "#podcast" }, { label: "About", href: "#about" }, { label: "Community", href: "#community" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "#events" }, { label: "Contact", href: "#contact" }, { label: "Privacy", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user