import React from 'react' import { Helmet } from 'react-helmet-async' export default function Resources() { const networkResources = [ { title: "Adventist Connections", description: "Connect with Adventists worldwide", url: "https://www.adventist.org", icon: "🌐" }, { title: "General Conference", description: "Official website of the Seventh-day Adventist Church", url: "https://www.adventist.org", icon: "⛪" }, { title: "SDA Yearbook", description: "Comprehensive directory of Adventist institutions", url: "https://www.adventistyearbook.org", icon: "📚" }, { title: "Adventist Education Net", description: "Educational resources and institutions", url: "https://education.adventist.org", icon: "🎓" }, { title: "Adventist Plusline", description: "Professional development and networking", url: "https://plusline.org", icon: "💼" }, { title: "E.G. White Estate", description: "Writings and resources from Ellen G. White", url: "https://whiteestate.org", icon: "✍️" }, { title: "TAGnet", description: "Technology and communication resources", url: "https://tagnet.org", icon: "💻" }, { title: "Adventist Educational Institutions", description: "Schools, colleges, and universities worldwide", url: "https://education.adventist.org", icon: "🏫" }, { title: "Fundamental Beliefs", description: "28 Fundamental Beliefs of Seventh-day Adventists", url: "https://www.adventist.org/beliefs/", icon: "📖" }, { title: "SDA Institutions Directory", description: "Global directory of Adventist organizations", url: "https://www.adventistdirectory.org", icon: "🗺️" }, { title: "Churches Directory", description: "Find Adventist churches near you", url: "https://www.adventistdirectory.org", icon: "🏛️" }, { title: "Open Directory Index", description: "Comprehensive Adventist resource index", url: "https://dmoz-odp.org/Society/Religion_and_Spirituality/Christianity/Denominations/Seventh-day_Adventist/", icon: "📋" }, { title: "Yahoo Adventist Index", description: "Curated Adventist resources and links", url: "https://dir.yahoo.com/Society_and_Culture/Religion_and_Spirituality/Christianity/Denominations/Seventh_day_Adventist/", icon: "🔍" } ] const bibleStudyResources = [ { title: "Discover Bible Guides", description: "Interactive online Bible study courses", url: "https://www.discoveronline.org", icon: "🔍" }, { title: "Bible Information Online", description: "Comprehensive Bible study resources", url: "https://www.bibleinfo.com", icon: "📖" }, { title: "Amazing Facts Study Guides", description: "Bible prophecy and truth studies", url: "https://www.amazingfacts.org", icon: "✨" }, { title: "Online Bible", description: "Multiple Bible translations and study tools", url: "https://www.biblegateway.com", icon: "📚" }, { title: "Sabbath School Lessons", description: "Weekly lesson quarterlies and discussions", url: "https://ssnet.org", icon: "📅" }, { title: "Adventist Information Ministry", description: "Evangelistic resources and materials", url: "https://www.aims.org", icon: "📢" }, { title: "Daniel Prophecy Series", description: "In-depth study of biblical prophecy", url: "https://www.amazingfacts.org/media-library/prophecy", icon: "🔮" } ] return ( <> Resources - Annaville Seventh-day Adventist Church {/* Hero Section */}

Adventist Resources

Discover trusted resources, Bible study materials, and educational content from Seventh-day Adventist organizations worldwide.

{/* Network Resources Section */}

Seventh-day Adventist Network Resources

Connect with official Adventist organizations, educational institutions, and global resources that support our mission and values.

{networkResources.map((resource, index) => (
{resource.icon}

{resource.title}

{resource.description}

))}
{/* Bible Study Resources Section */}

Bible Study & Learning Resources

Deepen your understanding of Scripture with these carefully selected Bible study materials, prophecy resources, and educational content.

{bibleStudyResources.map((resource, index) => (
{resource.icon}

{resource.title}

{resource.description}

))}
) }