"use client";
import { Navbar } from "@/components/navbar";
import { Hero } from "@/components/hero";
import { CategoriesBanner } from "@/components/categories-banner";
import { ContentRow } from "@/components/content-row";
import { FeaturesStrip } from "@/components/features-strip";
import { Pricing } from "@/components/pricing";
import { AppDownload } from "@/components/app-download";
import { Testimonials } from "@/components/testimonials";
import { CtaSection } from "@/components/cta-section";
import { Footer } from "@/components/footer";
// Content data using Unsplash images for placeholders
const liveShows = [
{
id: "l1",
title: "The Christian View — Morning Broadcast",
image: "https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=400&q=80",
isLive: true,
tag: "Talk Show",
},
{
id: "l2",
title: "Sunday Morning Service Live",
image: "https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=400&q=80",
isLive: true,
tag: "Church",
tagColor: "amber",
},
{
id: "l3",
title: "Praise & Worship Night",
image: "https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=400&q=80",
isLive: true,
},
{
id: "l4",
title: "Faith & Politics Today",
image: "https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=400&q=80",
isLive: true,
tag: "Political",
},
{
id: "l5",
title: "Evening Devotional with Pastor James",
image: "https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?w=400&q=80",
isLive: true,
},
{
id: "l6",
title: "Family Prayer Hour",
image: "https://images.unsplash.com/photo-1511895426328-dc8714191011?w=400&q=80",
isLive: true,
tag: "Family",
},
];
const featuredMovies = [
{
id: "m1",
title: "I Am This Dark World's Light",
image: "https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=400&q=80",
tag: "Documentary",
duration: "1h 45m",
},
{
id: "m2",
title: "The Path to Restoration",
image: "https://images.unsplash.com/photo-1440404653325-ab127d49abc1?w=400&q=80",
tag: "Drama",
duration: "2h 10m",
},
{
id: "m3",
title: "A Season of Grace",
image: "https://images.unsplash.com/photo-1508700115892-45ecd05ae2ad?w=400&q=80",
tag: "Faith",
tagColor: "amber",
duration: "1h 52m",
},
{
id: "m4",
title: "Kingdom Come",
image: "https://images.unsplash.com/photo-1536440136628-849c177e76a1?w=400&q=80",
duration: "1h 38m",
},
{
id: "m5",
title: "Unbreakable Faith",
image: "https://images.unsplash.com/photo-1460661419201-fd4cecdf8a8b?w=400&q=80",
tag: "Drama",
duration: "2h 05m",
},
{
id: "m6",
title: "The Vision",
image: "https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=400&q=80",
duration: "1h 20m",
},
{
id: "m7",
title: "Miracle on the Mountain",
image: "https://images.unsplash.com/photo-1454789548928-9efd52dc4031?w=400&q=80",
tag: "Inspirational",
tagColor: "amber",
duration: "1h 55m",
},
];
const talkShows = [
{
id: "t1",
title: "Coffee with Kim",
image: "https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=400&q=80",
tag: "Talk Show",
tagColor: "amber",
},
{
id: "t2",
title: "The Christian View",
image: "https://images.unsplash.com/photo-1544005313-94ddf0286df2?w=400&q=80",
tag: "Discussion",
},
{
id: "t3",
title: "Life & Faith with Dr. Marcus",
image: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&q=80",
tag: "Interview",
},
{
id: "t4",
title: "Raising Godly Children",
image: "https://images.unsplash.com/photo-1536321115970-5dfa13356211?w=400&q=80",
tag: "Family",
tagColor: "amber",
},
{
id: "t5",
title: "Marriage God's Way",
image: "https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?w=400&q=80",
tag: "Relationships",
},
{
id: "t6",
title: "Healing & Wholeness",
image: "https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=400&q=80",
},
];
const podcasts = [
{
id: "p1",
title: "Faith Over Fear",
image: "https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=400&q=80",
tag: "Podcast",
tagColor: "amber",
},
{
id: "p2",
title: "The Daily Devotional",
image: "https://images.unsplash.com/photo-1465188162913-8fb5709d6d57?w=400&q=80",
tag: "Daily",
},
{
id: "p3",
title: "Purpose Driven",
image: "https://images.unsplash.com/photo-1530435460869-d13625c69bbf?w=400&q=80",
tag: "Motivation",
},
{
id: "p4",
title: "Scripture Deep Dive",
image: "https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=400&q=80",
tag: "Bible Study",
tagColor: "amber",
},
{
id: "p5",
title: "Kingdom Business",
image: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&q=80",
tag: "Business",
},
{
id: "p6",
title: "Missions & Ministry",
image: "https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=400&q=80",
},
];
const kidsContent = [
{
id: "k1",
title: "Kids Beach Club",
image: "https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=400&q=80",
tag: "Kids",
tagColor: "amber",
},
{
id: "k2",
title: "Bible Heroes — Animated Series",
image: "https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?w=400&q=80",
tag: "Animation",
},
{
id: "k3",
title: "Worship for Kids",
image: "https://images.unsplash.com/photo-1511895426328-dc8714191011?w=400&q=80",
tag: "Music",
},
{
id: "k4",
title: "Kingdom Kidz Stories",
image: "https://images.unsplash.com/photo-1519340241574-2cec6aef0c01?w=400&q=80",
tag: "Stories",
tagColor: "amber",
},
{
id: "k5",
title: "Veggie Tales Faith",
image: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&q=80",
tag: "Animation",
},
{
id: "k6",
title: "Praise Party",
image: "https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?w=400&q=80",
},
];
export default function HomePage() {
return (
<div className="min-h-screen bg-[#0c0c0f]">
<Navbar />
<Hero />
<CategoriesBanner />
{/* Live TV row */}
<div id="live" className="bg-[#0c0c0f]">
<ContentRow
title="Live TV"
subtitle="Streaming right now"
items={liveShows}
badge="Live"
/>
</div>
{/* Divider */}
<div className="max-w-7xl mx-auto px-4 sm:px-6">
<div className="h-px bg-white/5" />
</div>
{/* Movies */}
<div id="movies" className="bg-[#0c0c0f]">
<ContentRow
title="Featured Movies"
subtitle="Faith-based films for the whole family"
items={featuredMovies}
/>
</div>
<div className="max-w-7xl mx-auto px-4 sm:px-6">
<div className="h-px bg-white/5" />
</div>
{/* Talk Shows */}
<div id="shows" className="bg-[#0c0c0f]">
<ContentRow
title="Talk Shows"
subtitle="Conversations that inspire and uplift"
items={talkShows}
/>
</div>
{/* Features strip */}
<FeaturesStrip />
{/* Podcasts */}
<div id="podcasts" className="bg-[#0c0c0f]">
<ContentRow
title="Podcasts"
subtitle="Deep conversations for your daily commute"
items={podcasts}
/>
</div>
<div className="max-w-7xl mx-auto px-4 sm:px-6">
<div className="h-px bg-white/5" />
</div>
{/* Kingdom Kidz */}
<div id="kids" className="bg-[#0c0c0f]">
<ContentRow
title="Kingdom Kidz"
subtitle="Safe, faith-filled content for children"
items={kidsContent}
badge="Family Safe"
/>
</div>
{/* Pricing */}
<Pricing />
{/* Testimonials */}
<Testimonials />
{/* App Download */}
<AppDownload />
{/* CTA */}
<CtaSection />
{/* Footer */}
<Footer />
</div>
);
}