const { useState, useEffect, useRef } = React; // ── Particle spark ─────────────────────────────────────────────────────────── function Sparks() { const sparks = Array.from({ length: 18 }, (_, i) => ({ id: i, left: Math.random() * 100, delay: Math.random() * 6, duration: 3 + Math.random() * 4, size: 1.5 + Math.random() * 2.5 })); return ( ); } // ── Hero ───────────────────────────────────────────────────────────────────── function Hero() { const videoRef = useRef(null); const [videoLoaded, setVideoLoaded] = useState(false); useEffect(() => { if (videoRef.current) { videoRef.current.play().catch(() => {}); } }, []); return (
{/* Video background */} {/* Fallback image */}
{/* Overlays */}
{/* Content */}
Christian Theology · Apologetics · Church History

IDOL KILLER

Destroying Sacred Cows
for the Cause of Christ

Deep dives into theology, philosophy, and church history — exposing false doctrine and presenting the Holy, living God of Scripture.

Watch Now Subscribe on YouTube
200+
Videos
Numerous
Theological Topics
100's of hours
of Content
{/* Scroll indicator */}
SCROLL
); } // ── What Is Idol Killer ────────────────────────────────────────────────────── function WhatIsSection() { return (

The Mission

Faithful to Scripture.
Honest with History.

Idol Killer is a YouTube channel dedicated to one thing: truth. Warren McGrew produces in-depth theological content that challenges comfortable assumptions, exposes false doctrine, and presents a biblically grounded, historically informed understanding of God.

No soft answers. No crowd-pleasing theology. Just Scripture, reason, and the testimony of the Early Church.

Our Mission →
{[ { icon: '⚡', title: 'Fearless Truth', desc: 'No sacred cows survive scrutiny when measured against Scripture and sound reasoning.' }, { icon: '📜', title: 'Historical Roots', desc: 'Grounded in Scripture and the Early Church Fathers.' }, { icon: '🔥', title: 'Intellectual Depth', desc: 'Engaging theology, philosophy, and logic — accessible without being shallow.' }]. map((p) =>
{p.icon}

{p.title}

{p.desc}

)}
); } // ── Topics strip ───────────────────────────────────────────────────────────── function TopicsSection() { const topics = [ { label: 'Calvinism', desc: 'TULIP, predestination, and the Calvinist tradition examined critically.' }, { label: 'Original Sin', desc: 'Augustine\'s legacy and what Scripture actually says about inherited guilt.' }, { label: 'Atonement', desc: 'Penal substitution, moral influence, and the theories that matter.' }, { label: 'Molinism', desc: 'Middle knowledge, counterfactuals, and Molina\'s system under scrutiny.' }, { label: 'Dynamic Omniscience', desc: 'Does God know future free choices? Open Theism explored.' }, { label: 'Church History', desc: 'What the Early Fathers really believed — and why it matters today.' }, { label: 'Debates & Responses', desc: 'Direct engagement with popular teachers, apologists, and theologians.' }]; return (

Explore by Topic

Every Doctrine Examined.
Every Claim Tested.

{topics.map((t, i) => {String(i + 1).padStart(2, '0')}

{t.label}

{t.desc}

)}
); } // ── Featured videos ────────────────────────────────────────────────────────── function FeaturedSection({ videos, onVideoClick }) { const featured = videos.slice(0, 4); return (

Latest Content

Recent Videos

View All →
{featured.map((v) => )}
); } // ── CTA banner ─────────────────────────────────────────────────────────────── function CtaBanner() { return (

Introducing you to the
Holy and living God of Scripture

Join thousands on YouTube for weekly deep-dives into theology that actually challenges you.

Subscribe Free →
); } // ── Home page ───────────────────────────────────────────────────────────────── function HomePage({ videos, onVideoClick }) { useScrollReveal(videos.length); return (
); } Object.assign(window, { HomePage });