Merge version_1 into main #1

Merged
bender merged 7 commits from version_1 into main 2026-03-14 18:32:10 +00:00
7 changed files with 83 additions and 48 deletions

View File

@@ -58,7 +58,7 @@ export default function AboutPage() {
title: "Our Mission",
description: "To illuminate the path of faith by providing accessible, inspiring, and biblically grounded resources that help individuals and communities discover the transformative power of God's Word.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/open-book-with-natural-element_23-2151812162.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/open-book-with-natural-element_23-2151812162.jpg?_wi=2",
imageAlt: "Open Bible representing our mission",
},
items: [
@@ -82,7 +82,7 @@ export default function AboutPage() {
title: "Our Core Values",
description: "We are committed to authenticity, compassion, biblical truth, and creating a welcoming space for all seekers of faith. Every resource is designed with care and spiritual integrity.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-couple-spend-time-summer-field_1157-23534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-couple-spend-time-summer-field_1157-23534.jpg?_wi=2",
imageAlt: "Community and values in action",
},
items: [
@@ -200,7 +200,7 @@ export default function AboutPage() {
variant: "radial-gradient",
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/flowers-near-dad-writing_23-2147817048.jpg"
imageSrc="http://img.b2bpic.net/free-photo/flowers-near-dad-writing_23-2147817048.jpg?_wi=1"
imageAlt="White light peaceful contact background"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -55,7 +55,7 @@ export default function BlogPage() {
category: "Faith",
title: "Understanding God's Love Through Scripture",
excerpt: "Discover how the Bible reveals God's unconditional love and what it means for your spiritual journey.",
imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-sitting-field_107420-65618.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-sitting-field_107420-65618.jpg?_wi=2",
imageAlt: "faith hope love spiritual",
authorName: "Rev. Elizabeth Hart",
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-gorgeous-young-woman-posing-before-old-wooden-wall_1304-3201.jpg",
@@ -66,7 +66,7 @@ export default function BlogPage() {
category: "Salvation",
title: "The Path to Salvation in Christ",
excerpt: "Learn about the transformative power of accepting Jesus Christ and experiencing redemption and grace.",
imageSrc: "http://img.b2bpic.net/free-vector/grassy-landscape-sunset_1048-1547.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/grassy-landscape-sunset_1048-1547.jpg?_wi=2",
imageAlt: "salvation grace Jesus Christ",
authorName: "Pastor John Wesley",
authorAvatar: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg",
@@ -77,7 +77,7 @@ export default function BlogPage() {
category: "Prayer",
title: "Daily Prayer: Building Your Spiritual Practice",
excerpt: "Practical guidance on establishing a meaningful prayer life and connecting deeply with God.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-woman-praying-outdoors_23-2150870095.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-woman-praying-outdoors_23-2150870095.jpg?_wi=2",
imageAlt: "prayer devotion daily spiritual",
authorName: "Sister Margaret Rose",
authorAvatar: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg",

View File

@@ -52,7 +52,7 @@ export default function ContactPage() {
variant: "radial-gradient",
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/flowers-near-dad-writing_23-2147817048.jpg"
imageSrc="http://img.b2bpic.net/free-photo/flowers-near-dad-writing_23-2147817048.jpg?_wi=2"
imageAlt="white light peaceful contact background"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -1,24 +1,57 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Light of the Bible - Christian Faith & Spiritual Growth",
description: "Discover Bible teachings, daily prayers, and spiritual guidance. Learn about Jesus Christ's message of love and salvation.",
keywords: "Bible teachings, Christian faith, Jesus Christ, prayer, spiritual growth, salvation, scripture",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Light of the Bible - Share God's Love and Wisdom",
description: "Explore the transformative teachings of Jesus Christ and grow in faith through our Bible study resources.",
url: "https://lightofthebible.com",
siteName: "Light of the Bible",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/abstract-background-with-starburst-design_1048-5903.jpg",
alt: "Light of the Bible - Spiritual Peace and Divine Presence",
},
],
},
twitter: {
card: "summary_large_image",
title: "Light of the Bible - Christian Spiritual Guidance",
description: "Learn about Jesus Christ's love, salvation, and the power of Scripture.",
images: ["http://img.b2bpic.net/free-vector/abstract-background-with-starburst-design_1048-5903.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +60,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +74,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -73,7 +73,7 @@ export default function HomePage() {
href: "/prayer",
},
]}
imageSrc="http://img.b2bpic.net/free-vector/abstract-background-with-starburst-design_1048-5903.jpg"
imageSrc="http://img.b2bpic.net/free-vector/abstract-background-with-starburst-design_1048-5903.jpg?_wi=1"
imageAlt="Peaceful light representing divine presence"
buttonAnimation="slide-up"
showDimOverlay={true}
@@ -131,7 +131,7 @@ export default function HomePage() {
title: "Love Your Neighbor",
description: "Jesus taught us to love others as ourselves, showing compassion and kindness in all relationships.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/man-reading-from-bible-gravestone-cemetery_23-2149431273.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-reading-from-bible-gravestone-cemetery_23-2149431273.jpg?_wi=1",
imageAlt: "Jesus Christ showing love and compassion",
},
items: [
@@ -155,7 +155,7 @@ export default function HomePage() {
title: "Salvation Through Faith",
description: "The promise of redemption and eternal life is offered to all who believe in Jesus Christ and His resurrection.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-couple-spend-time-summer-field_1157-23534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-couple-spend-time-summer-field_1157-23534.jpg?_wi=1",
imageAlt: "Spiritual prayer and faith journey",
},
items: [
@@ -179,7 +179,7 @@ export default function HomePage() {
title: "Forgiveness & Redemption",
description: "Through Christ, all sins are forgiven. His sacrifice offers freedom from guilt and a chance for spiritual renewal.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/open-book-with-natural-element_23-2151812162.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/open-book-with-natural-element_23-2151812162.jpg?_wi=1",
imageAlt: "Holy Scripture and spiritual guidance",
},
items: [
@@ -222,7 +222,7 @@ export default function HomePage() {
name: "Sarah Mitchell",
role: "Student & believer",
testimonial: "Learning about Jesus Christ through this website transformed my understanding of faith. The daily Bible verses bring me peace and spiritual guidance every morning.",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg?_wi=1",
imageAlt: "Sarah Mitchell",
icon: Star,
},
@@ -231,7 +231,7 @@ export default function HomePage() {
name: "James Thompson",
role: "Father & prayer warrior",
testimonial: "The prayer section has become part of my daily routine. My family now spends time together learning about God's love through the resources provided here.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg?_wi=1",
imageAlt: "James Thompson",
icon: Star,
},
@@ -240,7 +240,7 @@ export default function HomePage() {
name: "Maria Gonzalez",
role: "Healthcare worker",
testimonial: "During difficult times, this website reminded me of Christ's compassion and forgiveness. The blog articles provide comfort and spiritual strength when I need it most.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-gorgeous-young-woman-posing-before-old-wooden-wall_1304-3201.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-gorgeous-young-woman-posing-before-old-wooden-wall_1304-3201.jpg?_wi=1",
imageAlt: "Maria Gonzalez",
icon: Star,
},
@@ -249,7 +249,7 @@ export default function HomePage() {
name: "David Chen",
role: "Young professional",
testimonial: "The teachings of Jesus explained here helped me find purpose and meaning in my life. I now understand the message of salvation and feel closer to God.",
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-praying-grey-wall_176420-71.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-praying-grey-wall_176420-71.jpg?_wi=1",
imageAlt: "David Chen",
icon: Star,
},
@@ -258,7 +258,7 @@ export default function HomePage() {
name: "Rachel Foster",
role: "Teacher",
testimonial: "I use the Bible teachings section to help my students understand scripture in a modern context. The clarity and spiritual depth are wonderful resources.",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg?_wi=2",
imageAlt: "Rachel Foster",
icon: Star,
},
@@ -267,7 +267,7 @@ export default function HomePage() {
name: "Michael Torres",
role: "Pastor",
testimonial: "This website is an excellent complement to our church ministry. It brings the message of Christ's love to people seeking spiritual guidance and biblical understanding.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg?_wi=2",
imageAlt: "Michael Torres",
icon: Star,
},
@@ -324,7 +324,7 @@ export default function HomePage() {
category: "Faith",
title: "Understanding God's Love Through Scripture",
excerpt: "Discover how the Bible reveals God's unconditional love and what it means for your spiritual journey.",
imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-sitting-field_107420-65618.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-sitting-field_107420-65618.jpg?_wi=1",
imageAlt: "Faith and love spiritual concept",
authorName: "Rev. Elizabeth Hart",
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-gorgeous-young-woman-posing-before-old-wooden-wall_1304-3201.jpg",
@@ -335,7 +335,7 @@ export default function HomePage() {
category: "Salvation",
title: "The Path to Salvation in Christ",
excerpt: "Learn about the transformative power of accepting Jesus Christ and experiencing redemption and grace.",
imageSrc: "http://img.b2bpic.net/free-vector/grassy-landscape-sunset_1048-1547.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/grassy-landscape-sunset_1048-1547.jpg?_wi=1",
imageAlt: "Salvation and spiritual redemption",
authorName: "Pastor John Wesley",
authorAvatar: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg",
@@ -346,7 +346,7 @@ export default function HomePage() {
category: "Prayer",
title: "Daily Prayer: Building Your Spiritual Practice",
excerpt: "Practical guidance on establishing a meaningful prayer life and connecting deeply with God.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-woman-praying-outdoors_23-2150870095.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-woman-praying-outdoors_23-2150870095.jpg?_wi=1",
imageAlt: "Daily prayer and spiritual practice",
authorName: "Sister Margaret Rose",
authorAvatar: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg",

View File

@@ -59,7 +59,7 @@ export default function PrayerPage() {
href: "/teachings",
},
]}
imageSrc="http://img.b2bpic.net/free-vector/abstract-background-with-starburst-design_1048-5903.jpg"
imageSrc="http://img.b2bpic.net/free-vector/abstract-background-with-starburst-design_1048-5903.jpg?_wi=3"
imageAlt="Peaceful light representing divine presence"
buttonAnimation="slide-up"
showDimOverlay={true}
@@ -84,7 +84,7 @@ export default function PrayerPage() {
title: "Contemplative Prayer",
description: "Still your mind and listen to God's presence through quiet meditation and reflection. This ancient practice opens your heart to divine guidance and inner peace.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-couple-spend-time-summer-field_1157-23534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-couple-spend-time-summer-field_1157-23534.jpg?_wi=4",
imageAlt: "Contemplative prayer and spiritual peace",
},
items: [
@@ -108,7 +108,7 @@ export default function PrayerPage() {
title: "Intercessory Prayer",
description: "Pray for others and intercede on their behalf. This powerful practice shows Christ's love and brings healing, hope, and transformation to those in need.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/open-book-with-natural-element_23-2151812162.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/open-book-with-natural-element_23-2151812162.jpg?_wi=4",
imageAlt: "Intercessory prayer for others",
},
items: [
@@ -132,7 +132,7 @@ export default function PrayerPage() {
title: "Gratitude & Praise",
description: "Give thanks for blessings and praise God's goodness. Gratitude prayer shifts our focus to abundance and strengthens our faith in God's provision.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/man-reading-from-bible-gravestone-cemetery_23-2149431273.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-reading-from-bible-gravestone-cemetery_23-2149431273.jpg?_wi=3",
imageAlt: "Gratitude and praise in prayer",
},
items: [
@@ -175,7 +175,7 @@ export default function PrayerPage() {
name: "Emily Richardson",
role: "Prayer group leader",
testimonial: "Daily prayer practice has become my anchor. Through prayer, I found peace during life's storms and a deeper connection to God's love and purpose.",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg?_wi=5",
imageAlt: "Emily Richardson",
icon: Sparkles,
},
@@ -184,7 +184,7 @@ export default function PrayerPage() {
name: "Robert Williams",
role: "Spiritual mentor",
testimonial: "Prayer transformed my relationship with God. I learned to listen, not just speak. The guidance and peace I've received are beyond measure.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg?_wi=5",
imageAlt: "Robert Williams",
icon: Sparkles,
},
@@ -193,7 +193,7 @@ export default function PrayerPage() {
name: "Lisa Anderson",
role: "Counselor",
testimonial: "Through prayer, I've witnessed incredible healing in my clients' lives. Prayer opens hearts to God's transformative grace and brings hope where there was despair.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-gorgeous-young-woman-posing-before-old-wooden-wall_1304-3201.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-gorgeous-young-woman-posing-before-old-wooden-wall_1304-3201.jpg?_wi=3",
imageAlt: "Lisa Anderson",
icon: Sparkles,
},
@@ -202,7 +202,7 @@ export default function PrayerPage() {
name: "Christopher Lee",
role: "Young believer",
testimonial: "Starting my prayer practice was transformative. I now experience God's presence daily and feel guided through every decision in my life.",
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-praying-grey-wall_176420-71.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-praying-grey-wall_176420-71.jpg?_wi=3",
imageAlt: "Christopher Lee",
icon: Sparkles,
},
@@ -211,7 +211,7 @@ export default function PrayerPage() {
name: "Margaret Stone",
role: "Elderly prayer warrior",
testimonial: "Decades of prayer have shown me God's faithfulness. Prayer is the greatest privilege and source of joy in my spiritual life.",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg?_wi=6",
imageAlt: "Margaret Stone",
icon: Sparkles,
},
@@ -220,7 +220,7 @@ export default function PrayerPage() {
name: "Thomas Martin",
role: "Church pastor",
testimonial: "Prayer is the heartbeat of our church community. I've seen answered prayers unite believers and strengthen faith across generations.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg?_wi=6",
imageAlt: "Thomas Martin",
icon: Sparkles,
},

View File

@@ -59,7 +59,7 @@ export default function BibleTeachingsPage() {
href: "/prayer",
},
]}
imageSrc="http://img.b2bpic.net/free-vector/abstract-background-with-starburst-design_1048-5903.jpg"
imageSrc="http://img.b2bpic.net/free-vector/abstract-background-with-starburst-design_1048-5903.jpg?_wi=2"
imageAlt="Peaceful light representing divine presence"
buttonAnimation="slide-up"
showDimOverlay={true}
@@ -84,7 +84,7 @@ export default function BibleTeachingsPage() {
title: "Love Your Neighbor",
description: "Jesus taught us to love others as ourselves, showing compassion and kindness in all relationships.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/man-reading-from-bible-gravestone-cemetery_23-2149431273.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-reading-from-bible-gravestone-cemetery_23-2149431273.jpg?_wi=2",
imageAlt: "Jesus Christ showing love and compassion",
},
items: [
@@ -108,7 +108,7 @@ export default function BibleTeachingsPage() {
title: "Salvation Through Faith",
description: "The promise of redemption and eternal life is offered to all who believe in Jesus Christ and His resurrection.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-couple-spend-time-summer-field_1157-23534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-couple-spend-time-summer-field_1157-23534.jpg?_wi=3",
imageAlt: "Spiritual prayer and faith journey",
},
items: [
@@ -132,7 +132,7 @@ export default function BibleTeachingsPage() {
title: "Forgiveness & Redemption",
description: "Through Christ, all sins are forgiven. His sacrifice offers freedom from guilt and a chance for spiritual renewal.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/open-book-with-natural-element_23-2151812162.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/open-book-with-natural-element_23-2151812162.jpg?_wi=3",
imageAlt: "Holy Scripture and spiritual guidance",
},
items: [
@@ -175,7 +175,7 @@ export default function BibleTeachingsPage() {
name: "Sarah Mitchell",
role: "Student & believer",
testimonial: "Learning about Jesus Christ through Bible study transformed my understanding of faith. The teachings bring me peace and spiritual guidance every day.",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg?_wi=3",
imageAlt: "Sarah Mitchell",
icon: Sparkles,
},
@@ -184,7 +184,7 @@ export default function BibleTeachingsPage() {
name: "James Thompson",
role: "Father & prayer warrior",
testimonial: "The teachings of Christ have become the foundation of my family's faith journey. My children now understand God's love and the power of Scripture.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg?_wi=3",
imageAlt: "James Thompson",
icon: Sparkles,
},
@@ -193,7 +193,7 @@ export default function BibleTeachingsPage() {
name: "Maria Gonzalez",
role: "Healthcare worker",
testimonial: "During difficult times, the teachings reminded me of Christ's compassion and forgiveness. The Bible provides comfort and spiritual strength when I need it most.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-gorgeous-young-woman-posing-before-old-wooden-wall_1304-3201.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-gorgeous-young-woman-posing-before-old-wooden-wall_1304-3201.jpg?_wi=2",
imageAlt: "Maria Gonzalez",
icon: Sparkles,
},
@@ -202,7 +202,7 @@ export default function BibleTeachingsPage() {
name: "David Chen",
role: "Young professional",
testimonial: "The teachings of Jesus explained here helped me find purpose and meaning in my life. I now understand the message of salvation and feel closer to God.",
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-praying-grey-wall_176420-71.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-praying-grey-wall_176420-71.jpg?_wi=2",
imageAlt: "David Chen",
icon: Sparkles,
},
@@ -211,7 +211,7 @@ export default function BibleTeachingsPage() {
name: "Rachel Foster",
role: "Teacher",
testimonial: "I use these Bible teachings to help my students understand scripture in a modern context. The clarity and spiritual depth are wonderful educational resources.",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-middle-east-girl-smiling-happy-standing-city_839833-7903.jpg?_wi=4",
imageAlt: "Rachel Foster",
icon: Sparkles,
},
@@ -220,7 +220,7 @@ export default function BibleTeachingsPage() {
name: "Michael Torres",
role: "Pastor",
testimonial: "This resource complements our church ministry beautifully. It brings the message of Christ's love to people seeking spiritual guidance and biblical understanding.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-guy-keeping-palms-pressed-together-asking-something-looking-camera-isolated-gray-background-young-man-asking-favor_574295-6106.jpg?_wi=4",
imageAlt: "Michael Torres",
icon: Sparkles,
},