'use client'
import {
Container,
Typography,
Box,
Button,
Paper,
useTheme,
Divider,
Card,
CardContent,
List,
ListItem,
ListItemIcon,
ListItemText,
} from '@mui/material'
import {
MenuBook,
Chat,
Favorite,
Search,
Language,
CloudOff,
Security,
AutoStories,
Public,
VolunteerActivism,
CheckCircle,
} from '@mui/icons-material'
import { useRouter } from 'next/navigation'
import { useLocale } from 'next-intl'
export default function Home() {
const theme = useTheme()
const router = useRouter()
const locale = useLocale()
const features = [
{
icon: ,
title: 'A Global Bible Library',
description: '1,200+ versions, from ancient Hebrew to modern translations',
},
{
icon: ,
title: 'Multilingual Access',
description: '7 languages today, 40+ tomorrow',
},
{
icon: ,
title: 'A Prayer Wall Without Borders',
description: 'Believers praying for one another in real time',
},
{
icon: ,
title: 'AI Bible Chat',
description: 'Answers grounded in Scripture, not opinion',
},
{
icon: ,
title: 'Complete Privacy',
description: 'No ads, no tracking, no data sale — ever',
},
{
icon: ,
title: 'Offline Access',
description: 'Because the Word should reach even where the internet cannot',
},
]
return (
{/* Hero Section */}
Biblical Guide
Every Scripture. Every Language. Forever Free.
}
onClick={() => router.push(`/${locale}/bible`)}
>
Read the Bible
{/* Mission Section */}
The Word Should Never Have a Price Tag
Most Bible apps today hide the Word of God behind ads, upgrades, or premium study tools.
Biblical Guide is different.
No subscriptions. No tracking. No paywalls.
Just Scripture — in every language, for every believer — free forever.
{/* Donation Pitch Section */}
Your Gift Keeps the Gospel Free
Every donation directly supports the servers, translations, and technology that make Biblical Guide possible.
When you give, you are not paying for access — you are keeping access open for millions who cannot afford to pay.
Freely you have received; freely give.
— Matthew 10:8
{/* Features Section */}
What Your Support Sustains
Your donation keeps every verse, every prayer, every word — free to all.
{features.map((feature, index) => (
{feature.icon}
{feature.title}
{feature.description}
))}
{/* Donation Options Section */}
How You Can Support
🎯Support us on Kickstarter (coming soon)
Every contribution — big or small — helps keep Scripture open to everyone, everywhere.
{/* Why It Matters Section */}
Why It Matters
Each day, someone opens a Bible app and hits a paywall.
Each day, a believer loses connection and can't read the Word offline.
Each day, the Gospel becomes harder to reach for someone who needs it most.
Together, we can change that.
Your donation ensures that God's Word remains freely accessible — without cost, without barriers, without end.
{/* Join the Mission Section */}
Join the Mission
Biblical Guide is built by one believer, sustained by many.
No corporations. No investors. Just faith, code, and community.
If this mission speaks to you — help keep the Bible free forever.
}
>
Donate Now
Every verse you read today stays free tomorrow.
{/* Footer CTA */}
Biblical-Guide.com
Every Scripture. Every Language. Forever Free.
)
}