"use client";
import { motion } from "framer-motion";
import { Card, CardBody, Divider } from "@heroui/react";
import { fontCursive, fontSans, fontMono } from "@/config/fonts";
import {
HeartFilledIcon,
SunFilledIcon,
MoonFilledIcon,
} from "@/components/icons";
const fadeInUp = {
initial: { opacity: 0, y: 20 },
whileInView: { opacity: 1, y: 0 },
viewport: { once: true },
transition: { duration: 0.8 },
};
const tenets = [
{
title: "Light in the Void",
desc: "The universe is silent and indifferent — this is freedom. Meaning is ours to create.",
icon: ,
},
{
title: "Presence Over Promise",
desc: "There is no afterlife. The present moment is sacred enough.",
icon: ,
},
{
title: "Compassion Without Karma",
desc: "Kindness is not transactional. It is our natural responsibility.",
icon: ,
},
{
title: "Mindfulness Without Myth",
desc: "We seek awareness, not awakening. Lucidity is the goal, not enlightenment.",
icon:
,
},
{
title: "Reason with Reverence",
desc: "Science and logic illuminate reality — but so do stillness and art.",
icon: (
),
},
{
title: "Impermanence as Inspiration",
desc: "Nothing lasts — and that makes everything matter more.",
icon: ,
},
];
export default function NeoLucentismPage() {
return (
{/* Hero Section */}
{/* Celestial background elements */}
Neo-Lucentism
"We are lights in the void — brief, brilliant, and free."
{/* Intro Text */}
Neo-Lucentism is a secular spiritual philosophy that embraces the
absence of divine purpose as an invitation to create beauty, kindness,
and meaning in the fleeting space between birth and death. It draws
from humanism, secular Buddhism, and optimistic nihilism.
{/* Tenets Grid */}
The Core Tenets
{tenets.map((tenet, idx) => (
{tenet.icon}
{idx + 1}. {tenet.title}
{tenet.desc}
))}
{/* Practices & Ethics */}
Lucent Practices
{[
"Begin your day with 2 minutes of silence or intentional breath.",
"Reflect on impermanence — everything you experience is passing.",
"Read or engage with one meaningful idea per day.",
"Speak with clarity and compassion, even in disagreement.",
"Offer kindness without needing a reason or reward.",
"Create something — even a thought, a poem, a gesture.",
].map((item, i) => (
-
{i + 1}
{item}
))}
Ethical Code
What to Do
{[
"Act with empathy, not ego.",
"Be present with your sensations, emotions, and thoughts.",
"Question beliefs — including your own — with kindness.",
"Respect the silence between things. Practice mindful pauses.",
"Use reason and evidence while staying humble in knowledge.",
].map((item, i) => (
-
{item}
))}
What Not to Do
{[
"Do not claim certainty over the unknowable.",
"Do not seek salvation, judgment, or cosmic reward.",
"Do not harm in the name of truth, logic, or freedom.",
"Do not use Lucentism to divide or dominate.",
].map((item, i) => (
-
{item}
))}
{/* How to Follow */}
Following the Light
You do not need rituals, temples, or dogma. To follow Lucentism is
to live with awareness, compassion, and clarity. Connect with others
not as followers, but as fellow lights in the void.
Daily Awareness
Radical Kindness
Lucid Creation
{/* Closing Creed */}
);
}