Trick or Truth?
Historical awareness platform on Philippine Martial Law — a Next.js archive built to counter revisionism with motion-led storytelling.
Context
Trick or Truth? frames tyranny as the real horror — not costumes. The trick-or-truth repo is a Next.js 13 site with Tailwind and Framer Motion, drawing visual language from civic memory projects like Dear World Leaders and Insurrection Index.
Experience
The home route stacks a bold typographic hero with sectional essays (Greed, Culture) so visitors encounter narrative before navigation chrome. The tone is archival and confrontational by design.
What it ships
- Next.js App Router layout with sectional essays
- Tailwind-driven high-contrast typography
- Framer Motion for scroll-driven emphasis
- Archive status — preserved as historical awareness work
import Culture from "./culture";
import Greed from "./greed";
export default function Home() {
return (
<div>
<h1>TRICK OR <span className="text-red-700">TRUTH?</span></h1>
<Greed />
<Culture />
</div>
);
}