Light

import { useState, useEffect, useRef } from “react”;

const GOLD = “#c8a84b”;
const GOLD_L = “#e8c96a”;
const GOLD_D = “#8a6e28”;
const DEEP = “#1a1710”;
const MID = “#2d2a22”;
const VELLUM = “#f5f0e8”;
const CREAM = “#faf7f2”;
const PARCHMENT = “#ede6d5”;
const MUTED = “#6b6452”;
const INK = “#0f0e0c”;

const BOOKS = [
{
href: “https://100-books-project.com/intelligent-design-the-final-proof-of-god-by-dr-dan-anghel/”,
tag: “Audiobook”, cat: “Philosophy · Science & Faith”,
title: “Intelligent Design: The Final Proof of God”,
desc: “A 48-minute journey bridging quantum physics, consciousness, and the philosophical case for a higher intelligence behind the cosmos.”,
symbol: “✝”, bg: [”#2a2318”,”#1a1710”],
},
{
href: “https://100-books-project.com/soulfield-theory/”,
tag: “Philosophy”, cat: “Consciousness · Post-Material Science”,
title: “Soulfield Theory”,
desc: “A groundbreaking framework proposing consciousness reflects a deeper causal structure of reality — irreducible to determinism or quantum chance.”,
symbol: “∞”, bg: [”#25201a”,”#181410”],
},
{
href: “https://100-books-project.com/the-philosophy-of-light-by-gods-advocate-book-summary-key-benefits/”,
tag: “Spiritual”, cat: “Spiritual Philosophy”,
title: “The Philosophy of Light”,
desc: “Written as God’s Advocate — a luminous exploration of how perception, consciousness, and divine light shape the soul.”,
symbol: “☀”, bg: [”#1a1820”,”#0e0d18”],
},
{
href: “https://100-books-project.com/the-remnant/”,
tag: “Christian”, cat: “Christian Faith · Witness”,
title: “The Remnant”,
desc: “A powerful reflection on those who hold to truth and authentic Christian witness in a world of compromise and spiritual confusion.”,
symbol: “✝”, bg: [”#14180e”,”#0c1008”],
},
{
href: “https://100-books-project.com/pathways-to-the-ultimate-reality-by-dan-anghel-book-overview-deep-insights/”,
tag: “Metaphysics”, cat: “Metaphysics · Faith”,
title: “Pathways to the Ultimate Reality”,
desc: “A philosophical investigation tracing pathways from human reason and authentic faith toward the absolute ground of being.”,
symbol: “◉”, bg: [”#181510”,”#100e0b”],
},
{
href: “https://100-books-project.com/freed-by-infinity-a-philosophical-journey-beyond-tribal-identity-by-dan-anghel/”,
tag: “Philosophy”, cat: “Identity · Freedom · Faith”,
title: “Freed by Infinity”,
desc: “How authentic faith in an infinite God liberates the human soul from the prisons of tribal, ideological, and cultural identity.”,
symbol: “∞”, bg: [”#0e1418”,”#080c10”],
},
];

const AUDIO = [
{ href:“https://100-books-project.com/intelligent-design-the-final-proof-of-god-by-dr-dan-anghel/”, title:“Intelligent Design: The Final Proof of God”, desc:“48 min · Narrated by Steve Bramham · Free on Google Play”, tags:[“48 min”,“Free”,“Google Play”] },
{ href:“https://100-books-project.com/the-eye-of-light-how-perception-shapes-the-soul-an-illuminating-audiobook-by-dan-crown/”, title:“The Eye of Light: How Perception Shapes the Soul”, desc:“The relationship between spiritual perception, consciousness, and soul formation. By Dan Crown.”, tags:[“Audiobook”,“Dan Crown”] },
{ href:“https://100-books-project.com/the-light-within-by-dan-crown-overcome-stress-with-faith-prayer/”, title:“The Light Within: Overcome Stress with Faith & Prayer”, desc:“A faith-grounded guide to peace amid pressure — prayer, Scripture, and Christian contemplation.”, tags:[“Faith & Wellbeing”,“Dan Crown”] },
{ href:“https://100-books-project.com/the-power-of-our-thoughts/”, title:“The Power of Our Thoughts”, desc:“A philosophical and spiritual exploration of thought, intention, and the transformative power of renewed consciousness.”, tags:[“Mind & Spirit”] },
{ href:“https://100-books-project.com/the-enduring-power-of-moral-courage/”, title:“The Enduring Power of Moral Courage”, desc:“What gives human beings the strength to stand for truth when comfort and consensus point the other way?”, tags:[“Ethics”,“Essay”] },
{ href:“https://100-books-project.com/the-heart-that-conquers-power/”, title:“The Heart That Conquers Power”, desc:“On the paradox at the core of Christian ethics: how love, not force, is the ultimate power.”, tags:[“Christian Ethics”] },
];

const ARTICLES = [
{ href:“https://100-books-project.com/the-enduring-power-of-moral-courage/”, n:“01”, title:“The Enduring Power of Moral Courage”, desc:“What gives a human being the strength to stand alone for truth? An exploration of courage, conscience, and the cost of integrity.” },
{ href:“https://100-books-project.com/freed-by-infinity-a-philosophical-journey-beyond-tribal-identity-by-dan-anghel/”, n:“02”, title:“Freed by Infinity: Beyond Tribal Identity”, desc:“How genuine faith in an infinite God dissolves the walls we build around tribal and cultural identity.” },
{ href:“https://100-books-project.com/the-heart-that-conquers-power/”, n:“03”, title:“The Heart That Conquers Power”, desc:“On the paradox of Christian ethics: how self-giving love outmaneuvers every form of worldly force.” },
{ href:“https://100-books-project.com/pathways-to-the-ultimate-reality-by-dan-anghel-book-overview-deep-insights/”, n:“04”, title:“Pathways to the Ultimate Reality”, desc:“A philosophical map tracing the roads that human reason and authentic faith walk toward the absolute ground of being.” },
{ href:“https://100-books-project.com/the-remnant/”, n:“05”, title:“The Remnant: Faith in the Age of Compromise”, desc:“A searching reflection on holding to truth when the culture — and even the church — bows to comfort.” },
{ href:“https://100-books-project.com/the-power-of-our-thoughts/”, n:“06”, title:“The Power of Our Thoughts”, desc:“How conscious intention reshapes the architecture of the soul — philosophy and faith intertwined.” },
];

function useScrollReveal() {
const ref = useRef(null);
const [visible, setVisible] = useState(false);
useEffect(() => {
const el = ref.current;
if (!el) return;
const obs = new IntersectionObserver(([e]) => { if (e.isIntersecting) { setVisible(true); obs.disconnect(); } }, { threshold: 0.12 });
obs.observe(el);
return () => obs.disconnect();
}, []);
return [ref, visible];
}

function Reveal({ children, delay = 0, style = {} }) {
const [ref, vis] = useScrollReveal();
return (

{children}

);
}

function Eyebrow({ children, light }) {
return (


{children}

);
}

function Btn({ href, variant = “gold”, children }) {
const styles = {
gold: { background: GOLD, color: INK, border: “none” },
ghost: { background: “transparent”, color: GOLD_L, border: `1px solid rgba(200,168,75,0.4)` },
dark: { background: “transparent”, color: VELLUM, border: `1px solid rgba(245,240,232,0.2)` },
};
return (

{children}

);
}

function BookCard({ book }) {
const [hov, setHov] = useState(false);
return (
setHov(true)} onMouseLeave={() => setHov(false)}
style={{ display:“block”, textDecoration:“none”, color:“inherit”, borderRadius:3, overflow:“hidden”, background:“white”, boxShadow: hov ? “0 20px 48px rgba(0,0,0,0.14)” : “0 2px 10px rgba(0,0,0,0.07)”, transform: hov ? “translateY(-6px)” : “translateY(0)”, transition:“all .3s”, border:“1px solid rgba(0,0,0,0.06)” }}>
{/* Cover */}

{book.symbol}
{book.tag}
{book.title}

{/* Info */}

{book.cat}
{book.title}
{book.desc}
Explore


);
}

function AudioCard({ a }) {
const [hov, setHov] = useState(false);
return (
setHov(true)} onMouseLeave={() => setHov(false)}
style={{ display:“block”, textDecoration:“none”, borderRadius:3, padding:26, border: hov ? `1px solid rgba(200,168,75,0.45)` : `1px solid rgba(200,168,75,0.15)`, background: hov ? “rgba(255,255,255,0.07)” : “rgba(255,255,255,0.03)”, transition:“all .3s” }}>

{a.title}
{a.desc}
{a.tags.map(t => {t})}


);
}

function ArticleRow({ a }) {
const [hov, setHov] = useState(false);
return (
setHov(true)} onMouseLeave={() => setHov(false)}
style={{ display:“grid”, gridTemplateColumns:“64px 1fr 32px”, alignItems:“center”, gap:24, padding:“24px 0”, borderBottom:“1px solid rgba(0,0,0,0.08)”, textDecoration:“none”, color:“inherit”, paddingLeft: hov ? 10 : 0, transition:“padding-left .25s” }}>

{a.n}
{a.title}
{a.desc}


);
}

export default function App() {
const [navSolid, setNavSolid] = useState(false);
const [menuOpen, setMenuOpen] = useState(false);

useEffect(() => {
const fn = () => setNavSolid(window.scrollY > 60);
window.addEventListener(“scroll”, fn);
return () => window.removeEventListener(“scroll”, fn);
}, []);

const scrollTo = (id) => {
setMenuOpen(false);
document.getElementById(id)?.scrollIntoView({ behavior: “smooth” });
};

const gf = “@import url(‘https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap’);”;

return (

{`${gf} *{box-sizing:border-box;margin:0;padding:0} html{scroll-behavior:smooth} body{font-family:’Jost’,sans-serif;overflow-x:hidden} a{cursor:pointer} ::-webkit-scrollbar{width:6px} ::-webkit-scrollbar-track{background:${DEEP}} ::-webkit-scrollbar-thumb{background:${GOLD_D};border-radius:3px} @keyframes fadeUp{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:translateY(0)}} .hero-h1{animation:fadeUp .9s .1s both} .hero-sub{animation:fadeUp .9s .3s both} .hero-btns{animation:fadeUp .9s .5s both} .hero-eye{animation:fadeUp .9s .05s both} @keyframes float{0%,100%{transform:rotate(-4deg) translateY(0)}50%{transform:rotate(-4deg) translateY(-8px)}} @keyframes float2{0%,100%{transform:rotate(2.5deg) translateY(0)}50%{transform:rotate(2.5deg) translateY(-6px)}} @keyframes float3{0%,100%{transform:rotate(-1deg) translateY(0)}50%{transform:rotate(-1deg) translateY(-10px)}} .b1{animation:float 6s ease-in-out infinite} .b2{animation:float2 7s ease-in-out infinite .5s} .b3{animation:float3 5.5s ease-in-out infinite 1s}`}

“`
{/* ── NAV ── */}


Physician · Philosopher · Author
Dr. Dan Anghel

{/* Desktop links */}

{[[“Books”,”books”],[“Audiobooks”,”audio”],[“Philosophy”,”soulfield”],[“Articles”,”articles”]].map(([l,id])=>(

))}
About

{/* ── HERO ── */}

{/* BG gradients */}

{/* Vertical beam */}

{/* Grain */}


Faith · Philosophy · Consciousness

Where ancient faith
meets the deepest
questions of science

Dr. Dan Anghel — physician, philosopher, and Christian author — writes at the frontier where authentic faith and the science of consciousness converge into something that cannot be ignored.



Soulfield Theory

{/* Floating books */}

Intelligent Design:
The Final Proof of God
Dr. Dan Anghel

Soulfield Theory
Dr. Dan Anghel

The Philosophy of Light
God’s Advocate

{/* ── STATS ── */}

{[[“10+”,”Books & Audiobooks”],[“MD”,”Physician · Author”],[“2016″,”First Publication”],[“∞”,”Questions That Matter”]].map(([n,l])=>(

{n}
{l}

))}

{/* ── AUTHOR ── */}

{/* Portrait placeholder */}

Dr. Dan Anghel

MD
Physician
& Author

About the Author

Physician. Philosopher.
Seeker of Truth.

{[“Medical Doctor (MD)”,”Christian Philosopher”,”Pen: God’s Advocate”,”Romania”].map(t=>(
{t}
))}

“The questions that science cannot silence are the ones worth asking.”

Dr. Dan Anghel is a Romanian physician and author writing at the luminous intersection of Christian faith, rigorous philosophy, and the science of consciousness. Writing under the pen name God’s Advocate, he brings intellectual depth to questions that define our humanity.

His books move fearlessly between quantum physics, the hard problem of consciousness, the theology of free will, and the lived experience of faith — never settling for easy answers, always pressing toward truth.

His landmark work Soulfield Theory (2026) proposes that consciousness cannot be reduced to neural processes — and that understanding why changes everything we thought we knew about mind, God, and reality.

Full Biography

{/* ── BOOKS ── */}

Written Works

Books That Change the Questions

Each title is a philosophical expedition — blending authentic Christian thought with the most demanding questions of science and existence.

{BOOKS.map((b,i)=>)}

{/* ── SOULFIELD ── */}

Featured Work · 2026

Soulfield Theory

A new philosophical framework for consciousness, free will, and the structure of reality.

“The question of consciousness is ultimately inseparable from the question of what kind of universe we inhabit.”

Modern science can map every neuron — and still cannot explain why there is experience at all. Soulfield Theory confronts this hard problem directly, proposing a third causal structure beyond determinism and chance: self-determining causation. Genuine agency. The origin of action, not merely its transmission.

Published on Zenodo with permanent DOI. Bridging academic philosophy, Christian theology, and post-material science.

Read the Theory
View on Zenodo

Core Pillars
Soulfield Theory · Dr. Dan Anghel
    {[
    “Consciousness reflects a deeper causal structure of reality — not a by-product of neurons.”,
    “The brain is a biological interface through which conscious agents interact with the physical world.”,
    “Genuine agency requires a third causal structure: the Omega Operator.”,
    “Self-determining causation — the irreducible foundation of free will.”,
    “Post-material science confirms the deepest intuitions of Christian theology.”,
    “Reality cannot be a purely mechanical chain of causes if conscious agents truly originate action.”,
    ].map(p=>(

  • {p}
  • ))}

{/* ── AUDIOBOOKS ── */}

Listen & Learn

Audiobook Collection

Professionally narrated. For the commute, the contemplative hour, or wherever deep questions find you.

{AUDIO.map((a,i)=>)}

{/* ── ARTICLES ── */}

Deep Reading

Articles & Philosophical Essays

Long-form reflections on faith, consciousness, ethics, and the nature of reality — for those who want more than answers.

{ARTICLES.map((a,i)=>)}

{/* ── CTA ── */}

Begin the Journey

The questions that matter most
are the ones we never stopped asking.

Faith is not the end of inquiry — it is its truest beginning. An invitation to think more deeply, believe more honestly, and live more fully.



Explore Soulfield Theory

{/* ── NEWSLETTER ── */}

Stay Connected

New reflections,
delivered to your soul.

Join readers exploring faith, philosophy, and consciousness. New articles, book releases, audiobook announcements — no noise, only substance.

No spam. Unsubscribe anytime. Your privacy is respected.

{/* ── FOOTER ── */}

“`

);
}