Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
314
src/app/page.tsx
314
src/app/page.tsx
@@ -33,37 +33,21 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#home",
|
||||
},
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Team",
|
||||
id: "#team",
|
||||
},
|
||||
name: "Team", id: "#team"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "FAQs",
|
||||
id: "#faqs",
|
||||
},
|
||||
name: "FAQs", id: "#faqs"},
|
||||
{
|
||||
name: "Blog",
|
||||
id: "#blog",
|
||||
},
|
||||
name: "Blog", id: "#blog"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Strebeka Orthodox Church"
|
||||
/>
|
||||
@@ -73,109 +57,61 @@ export default function LandingPage() {
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Welcome to Strebeka Orthodox Church"
|
||||
description="A community rooted in Orthodox faith and tradition. Discover our services, learn our history, and join our spiritual family in Orlando."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sophia R.",
|
||||
handle: "@SophiaR",
|
||||
testimonial: "Strebeka Orthodox Church has been a beacon of spiritual guidance and community for my family. The reverence in worship is truly profound.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-older-woman-beach_23-2148992169.jpg",
|
||||
imageAlt: "Sophia R. avatar",
|
||||
},
|
||||
name: "Sophia R.", handle: "@SophiaR", testimonial: "Strebeka Orthodox Church has been a beacon of spiritual guidance and community for my family. The reverence in worship is truly profound.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-older-woman-beach_23-2148992169.jpg", imageAlt: "Sophia R. avatar"},
|
||||
{
|
||||
name: "The Johnson Family",
|
||||
handle: "@JohnsonFam",
|
||||
testimonial: "Our children love the Sunday school programs, and we've found such warmth and acceptance here. It truly feels like home.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-family-enjoying-trips_23-2149176487.jpg",
|
||||
imageAlt: "The Johnson Family avatar",
|
||||
},
|
||||
name: "The Johnson Family", handle: "@JohnsonFam", testimonial: "Our children love the Sunday school programs, and we've found such warmth and acceptance here. It truly feels like home.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-family-enjoying-trips_23-2149176487.jpg", imageAlt: "The Johnson Family avatar"},
|
||||
{
|
||||
name: "Mark L.",
|
||||
handle: "@MarkL",
|
||||
testimonial: "The deep theological teachings and ancient traditions resonate deeply. It's a place of true spiritual growth and reflection.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-hopeful-bearded-man-praying-god-isolated-dark-wall_140725-97223.jpg",
|
||||
imageAlt: "Mark L. avatar",
|
||||
},
|
||||
name: "Mark L.", handle: "@MarkL", testimonial: "The deep theological teachings and ancient traditions resonate deeply. It's a place of true spiritual growth and reflection.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-hopeful-bearded-man-praying-god-isolated-dark-wall_140725-97223.jpg", imageAlt: "Mark L. avatar"},
|
||||
{
|
||||
name: "Elena P.",
|
||||
handle: "@ElenaP",
|
||||
testimonial: "As a newcomer to Orlando, I was searching for an Orthodox community, and Strebeka welcomed me with open arms. A blessed place.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-students-studying-outdoors_171337-11739.jpg",
|
||||
imageAlt: "Elena P. avatar",
|
||||
},
|
||||
name: "Elena P.", handle: "@ElenaP", testimonial: "As a newcomer to Orlando, I was searching for an Orthodox community, and Strebeka welcomed me with open arms. A blessed place.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-students-studying-outdoors_171337-11739.jpg", imageAlt: "Elena P. avatar"},
|
||||
{
|
||||
name: "David & Maria T.",
|
||||
handle: "@DavidMariaT",
|
||||
testimonial: "We cherish the divine liturgies and the genuine fellowship we share with our brothers and sisters in Christ here.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-couple-spend-time-spring-forest_1157-36147.jpg",
|
||||
imageAlt: "David & Maria T. avatars",
|
||||
},
|
||||
name: "David & Maria T.", handle: "@DavidMariaT", testimonial: "We cherish the divine liturgies and the genuine fellowship we share with our brothers and sisters in Christ here.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-couple-spend-time-spring-forest_1157-36147.jpg", imageAlt: "David & Maria T. avatars"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Our Community",
|
||||
href: "#about",
|
||||
},
|
||||
text: "Explore Our Community", href: "#about"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-people-praying-together_23-2149547967.jpg"
|
||||
imageAlt="Strebeka Orthodox Church interior during a service"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-happy-retired-woman-wearing-cozy-sweater-short-hairdo_343059-1210.jpg",
|
||||
alt: "Happy retired woman",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-happy-retired-woman-wearing-cozy-sweater-short-hairdo_343059-1210.jpg", alt: "Happy retired woman"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/elderly-woman-with-closed-eyes_1098-13605.jpg",
|
||||
alt: "Elderly woman with closed eyes",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/elderly-woman-with-closed-eyes_1098-13605.jpg", alt: "Elderly woman with closed eyes"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-attractive-stylish-senior-caucasian-female-pensioner-with-pixie-short-hairstyle-spending-day-home-standing-living-room-wearing-elegant-blue-dress-smiling-happily_343059-2673.jpg",
|
||||
alt: "Smiling senior woman",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-attractive-stylish-senior-caucasian-female-pensioner-with-pixie-short-hairstyle-spending-day-home-standing-living-room-wearing-elegant-blue-dress-smiling-happily_343059-2673.jpg", alt: "Smiling senior woman"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/senior-woman-looking-camera-successful-mature-business-woman-happy-old-professor-standing-office-with-gray-hair_657921-1221.jpg",
|
||||
alt: "Mature business woman",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/senior-woman-looking-camera-successful-mature-business-woman-happy-old-professor-standing-office-with-gray-hair_657921-1221.jpg", alt: "Mature business woman"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-family-enjoying-trips_23-2149176491.jpg",
|
||||
alt: "Young family enjoying trips",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-family-enjoying-trips_23-2149176491.jpg", alt: "Young family enjoying trips"},
|
||||
]}
|
||||
avatarText="Join our growing spiritual family"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Faith",
|
||||
icon: Sparkles,
|
||||
type: "text-icon", text: "Faith", icon: Sparkles,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Community",
|
||||
icon: Users,
|
||||
type: "text-icon", text: "Community", icon: Users,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Tradition",
|
||||
icon: FileText,
|
||||
type: "text-icon", text: "Tradition", icon: FileText,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Hope",
|
||||
icon: Building,
|
||||
type: "text-icon", text: "Hope", icon: Building,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Love",
|
||||
icon: Heart,
|
||||
type: "text-icon", text: "Love", icon: Heart,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -201,23 +137,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Divine Liturgy & Sacraments",
|
||||
description: "Join us for our weekly Divine Liturgy and partake in the Holy Sacraments, the heart of Orthodox Christian worship and spiritual life.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-church-architectural-elements_23-2150319331.jpg",
|
||||
imageAlt: "Orthodox Iconostasis inside a church",
|
||||
},
|
||||
title: "Divine Liturgy & Sacraments", description: "Join us for our weekly Divine Liturgy and partake in the Holy Sacraments, the heart of Orthodox Christian worship and spiritual life.", imageSrc: "http://img.b2bpic.net/free-photo/view-church-architectural-elements_23-2150319331.jpg", imageAlt: "Orthodox Iconostasis inside a church"},
|
||||
{
|
||||
title: "Orthodox Education",
|
||||
description: "Engage in our adult education classes, youth programs, and Bible studies designed to deepen your understanding of the Orthodox faith.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-couple-holding-hands-with-blurred-background_181624-36596.jpg",
|
||||
imageAlt: "Group participating in a Bible study",
|
||||
},
|
||||
title: "Orthodox Education", description: "Engage in our adult education classes, youth programs, and Bible studies designed to deepen your understanding of the Orthodox faith.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-couple-holding-hands-with-blurred-background_181624-36596.jpg", imageAlt: "Group participating in a Bible study"},
|
||||
{
|
||||
title: "Community Fellowship",
|
||||
description: "Participate in our various fellowship events, from potlucks and picnics to charitable initiatives, fostering strong bonds among members.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-drive-volunteer-with-african-american-ethnicity-serves-poor-hungry-person-warm-meal-close-up-less-privileged-needy-individual-receiving-free-food-from-charity-worker_482257-68565.jpg",
|
||||
imageAlt: "Church community sharing a meal together",
|
||||
},
|
||||
title: "Community Fellowship", description: "Participate in our various fellowship events, from potlucks and picnics to charitable initiatives, fostering strong bonds among members.", imageSrc: "http://img.b2bpic.net/free-photo/food-drive-volunteer-with-african-american-ethnicity-serves-poor-hungry-person-warm-meal-close-up-less-privileged-needy-individual-receiving-free-food-from-charity-worker_482257-68565.jpg", imageAlt: "Church community sharing a meal together"},
|
||||
]}
|
||||
title="Serving God and Community"
|
||||
description="Discover the many ways to engage with our church, from divine liturgies and educational programs to community outreach and youth activities. We offer a full spectrum of spiritual and communal life opportunities."
|
||||
@@ -233,23 +157,11 @@ export default function LandingPage() {
|
||||
membersAnimation="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Rev. Father Michael",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-butler-applauding-someone_482257-101627.jpg",
|
||||
imageAlt: "Portrait of Rev. Father Michael",
|
||||
},
|
||||
id: "1", name: "Rev. Father Michael", imageSrc: "http://img.b2bpic.net/free-photo/positive-butler-applauding-someone_482257-101627.jpg", imageAlt: "Portrait of Rev. Father Michael"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Presbytera Maria",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-working-together_23-2149181995.jpg",
|
||||
imageAlt: "Portrait of Presbytera Maria",
|
||||
},
|
||||
id: "2", name: "Presbytera Maria", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-working-together_23-2149181995.jpg", imageAlt: "Portrait of Presbytera Maria"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Deacon Stephen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-bible-book-church_23-2150572013.jpg",
|
||||
imageAlt: "Portrait of Deacon Stephen",
|
||||
},
|
||||
id: "3", name: "Deacon Stephen", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-bible-book-church_23-2150572013.jpg", imageAlt: "Portrait of Deacon Stephen"},
|
||||
]}
|
||||
memberVariant="card"
|
||||
/>
|
||||
@@ -262,50 +174,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sophia R.",
|
||||
handle: "Parishioner",
|
||||
testimonial: "Strebeka Orthodox Church has been a beacon of spiritual guidance and community for my family. The reverence in worship is truly profound, fostering a deep connection to God.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-surprised-ginger-woman-dress-with-arm-hip-pointing-up-looking-camera-pink_171337-1429.jpg",
|
||||
imageAlt: "Smiling elderly woman",
|
||||
},
|
||||
id: "1", name: "Sophia R.", handle: "Parishioner", testimonial: "Strebeka Orthodox Church has been a beacon of spiritual guidance and community for my family. The reverence in worship is truly profound, fostering a deep connection to God.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-surprised-ginger-woman-dress-with-arm-hip-pointing-up-looking-camera-pink_171337-1429.jpg", imageAlt: "Smiling elderly woman"},
|
||||
{
|
||||
id: "2",
|
||||
name: "The Johnson Family",
|
||||
handle: "New Members",
|
||||
testimonial: "Our children love the Sunday school programs, and we've found such warmth and acceptance here. It truly feels like a second home, filled with grace and fellowship.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/polyamory-people-spending-time-together_23-2149302021.jpg",
|
||||
imageAlt: "Smiling family in church",
|
||||
},
|
||||
id: "2", name: "The Johnson Family", handle: "New Members", testimonial: "Our children love the Sunday school programs, and we've found such warmth and acceptance here. It truly feels like a second home, filled with grace and fellowship.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/polyamory-people-spending-time-together_23-2149302021.jpg", imageAlt: "Smiling family in church"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Mark L.",
|
||||
handle: "Long-time Member",
|
||||
testimonial: "The deep theological teachings and ancient traditions resonate deeply with my soul. It's a place of true spiritual growth, profound reflection, and unwavering faith.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-priest-confession_23-2149284637.jpg",
|
||||
imageAlt: "Thoughtful man in contemplation",
|
||||
},
|
||||
id: "3", name: "Mark L.", handle: "Long-time Member", testimonial: "The deep theological teachings and ancient traditions resonate deeply with my soul. It's a place of true spiritual growth, profound reflection, and unwavering faith.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-priest-confession_23-2149284637.jpg", imageAlt: "Thoughtful man in contemplation"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Elena P.",
|
||||
handle: "Orlando Resident",
|
||||
testimonial: "As a newcomer to Orlando, I was searching for an Orthodox community, and Strebeka welcomed me with open arms. It is a truly blessed place, full of love and hospitality.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-reading-book_23-2150062154.jpg",
|
||||
imageAlt: "Smiling young woman",
|
||||
},
|
||||
id: "4", name: "Elena P.", handle: "Orlando Resident", testimonial: "As a newcomer to Orlando, I was searching for an Orthodox community, and Strebeka welcomed me with open arms. It is a truly blessed place, full of love and hospitality.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-reading-book_23-2150062154.jpg", imageAlt: "Smiling young woman"},
|
||||
{
|
||||
id: "5",
|
||||
name: "David & Maria T.",
|
||||
handle: "Married Couple",
|
||||
testimonial: "We cherish the divine liturgies and the genuine fellowship we share with our brothers and sisters in Christ here. The community is supportive and inspiring.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-book-club_23-2150059021.jpg",
|
||||
imageAlt: "Couple holding hands in church",
|
||||
},
|
||||
id: "5", name: "David & Maria T.", handle: "Married Couple", testimonial: "We cherish the divine liturgies and the genuine fellowship we share with our brothers and sisters in Christ here. The community is supportive and inspiring.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-book-club_23-2150059021.jpg", imageAlt: "Couple holding hands in church"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Experiences from Our Family"
|
||||
@@ -319,20 +201,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What is Orthodox Christianity?",
|
||||
content: "Orthodox Christianity is one of the oldest Christian traditions, tracing its roots directly back to the Apostles. It emphasizes ancient worship, rich theology, and a continuous spiritual heritage.",
|
||||
},
|
||||
id: "1", title: "What is Orthodox Christianity?", content: "Orthodox Christianity is one of the oldest Christian traditions, tracing its roots directly back to the Apostles. It emphasizes ancient worship, rich theology, and a continuous spiritual heritage."},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do I need to be Orthodox to attend services?",
|
||||
content: "Absolutely not! All are welcome to attend our services, observe, and learn. We invite you to experience the beauty and reverence of Orthodox worship, regardless of your background.",
|
||||
},
|
||||
id: "2", title: "Do I need to be Orthodox to attend services?", content: "Absolutely not! All are welcome to attend our services, observe, and learn. We invite you to experience the beauty and reverence of Orthodox worship, regardless of your background."},
|
||||
{
|
||||
id: "3",
|
||||
title: "How can I become a member?",
|
||||
content: "Becoming a member involves a journey of catechesis (instruction in the faith) and often baptism or chrismation, if not already Orthodox. Please speak with Father Michael to learn more about this blessed path.",
|
||||
},
|
||||
id: "3", title: "How can I become a member?", content: "Becoming a member involves a journey of catechesis (instruction in the faith) and often baptism or chrismation, if not already Orthodox. Please speak with Father Michael to learn more about this blessed path."},
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Find answers to common questions about Orthodox Christianity, our church, and how you can get involved. We're here to help clarify your spiritual journey."
|
||||
@@ -351,38 +224,11 @@ export default function LandingPage() {
|
||||
tag="Sermons & Insights"
|
||||
blogs={[
|
||||
{
|
||||
id: "1",
|
||||
category: "Sermon",
|
||||
title: "The Meaning of Lent in the Modern World",
|
||||
excerpt: "Father Michael's latest sermon explores how the ancient practice of Lent remains profoundly relevant to contemporary spiritual life, offering paths to repentance and renewal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-people-wearing-santa-hats_23-2149726743.jpg",
|
||||
imageAlt: "Priest giving a sermon in church",
|
||||
authorName: "Fr. Michael",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/pleased-middle-aged-man-wearing-white-t-shirt-with-tie-showing-pray-gesture-isolated-pink-wall_141793-102747.jpg",
|
||||
date: "March 10, 2024",
|
||||
},
|
||||
id: "1", category: "Sermon", title: "The Meaning of Lent in the Modern World", excerpt: "Father Michael's latest sermon explores how the ancient practice of Lent remains profoundly relevant to contemporary spiritual life, offering paths to repentance and renewal.", imageSrc: "http://img.b2bpic.net/free-photo/back-view-people-wearing-santa-hats_23-2149726743.jpg", imageAlt: "Priest giving a sermon in church", authorName: "Fr. Michael", authorAvatar: "http://img.b2bpic.net/free-photo/pleased-middle-aged-man-wearing-white-t-shirt-with-tie-showing-pray-gesture-isolated-pink-wall_141793-102747.jpg", date: "March 10, 2024"},
|
||||
{
|
||||
id: "2",
|
||||
category: "Theology",
|
||||
title: "Understanding Orthodox Iconography",
|
||||
excerpt: "A deep dive into the theology and symbolism behind Orthodox icons, explaining their role in worship and spiritual contemplation.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-church-architectural-elements_23-2150319332.jpg",
|
||||
imageAlt: "Orthodox icons with golden details",
|
||||
authorName: "Presbytera Maria",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/cheerful-woman-eyeglasses-dress-posing-office_197531-18146.jpg",
|
||||
date: "February 28, 2024",
|
||||
},
|
||||
id: "2", category: "Theology", title: "Understanding Orthodox Iconography", excerpt: "A deep dive into the theology and symbolism behind Orthodox icons, explaining their role in worship and spiritual contemplation.", imageSrc: "http://img.b2bpic.net/free-photo/view-church-architectural-elements_23-2150319332.jpg", imageAlt: "Orthodox icons with golden details", authorName: "Presbytera Maria", authorAvatar: "http://img.b2bpic.net/free-photo/cheerful-woman-eyeglasses-dress-posing-office_197531-18146.jpg", date: "February 28, 2024"},
|
||||
{
|
||||
id: "3",
|
||||
category: "Community News",
|
||||
title: "Youth Group Visits Local Food Bank",
|
||||
excerpt: "Our youth group recently volunteered at the Orlando Food Bank, embodying Christian charity and making a tangible difference in our local community.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-hanging-out-jetty_23-2150767917.jpg",
|
||||
imageAlt: "Youth group volunteering at a food bank",
|
||||
authorName: "Deacon Stephen",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-priest-his-lunch-time_23-2149284682.jpg",
|
||||
date: "February 15, 2024",
|
||||
},
|
||||
id: "3", category: "Community News", title: "Youth Group Visits Local Food Bank", excerpt: "Our youth group recently volunteered at the Orlando Food Bank, embodying Christian charity and making a tangible difference in our local community.", imageSrc: "http://img.b2bpic.net/free-photo/family-hanging-out-jetty_23-2150767917.jpg", imageAlt: "Youth group volunteering at a food bank", authorName: "Deacon Stephen", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-priest-his-lunch-time_23-2149284682.jpg", date: "February 15, 2024"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -391,20 +237,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "glowing-orb",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Connect With Us"
|
||||
title="Join Our Spiritual Family"
|
||||
description="We welcome all who seek to learn more about Orthodox Christianity or wish to find a spiritual home in Orlando. Reach out to us with any questions, or simply plan a visit."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "#footer",
|
||||
},
|
||||
text: "Contact Us", href: "#footer"},
|
||||
{
|
||||
text: "Visit Us",
|
||||
href: "https://www.google.com/maps/search/Strebeka+Orthodox+Church+Orlando",
|
||||
onClick: "() => window.open('https://www.google.com/maps/search/Strebeka+Orthodox+Church+Orlando', '_blank')",
|
||||
text: "Visit Us", href: "https://www.google.com/maps/search/Strebeka+Orthodox+Church+Orlando", onClick: () => window.open('https://www.google.com/maps/search/Strebeka+Orthodox+Church+Orlando', '_blank'),
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -415,54 +256,33 @@ export default function LandingPage() {
|
||||
logoText="Strebeka Orthodox Church"
|
||||
columns={[
|
||||
{
|
||||
title: "About Us",
|
||||
items: [
|
||||
title: "About Us", items: [
|
||||
{
|
||||
label: "Our History",
|
||||
href: "#about",
|
||||
},
|
||||
label: "Our History", href: "#about"},
|
||||
{
|
||||
label: "Our Beliefs",
|
||||
href: "#faqs",
|
||||
},
|
||||
label: "Our Beliefs", href: "#faqs"},
|
||||
{
|
||||
label: "Clergy & Staff",
|
||||
href: "#team",
|
||||
},
|
||||
label: "Clergy & Staff", href: "#team"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Divine Liturgy",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Divine Liturgy", href: "#services"},
|
||||
{
|
||||
label: "Education",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Education", href: "#services"},
|
||||
{
|
||||
label: "Community Life",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Community Life", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
{
|
||||
label: "Sermons",
|
||||
href: "#blog",
|
||||
},
|
||||
label: "Sermons", href: "#blog"},
|
||||
{
|
||||
label: "Support Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "Support Us", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user