This commit is contained in:
neutrino2211
2025-09-19 23:48:00 +01:00
parent 74a383448b
commit 8177a48df1
14 changed files with 1348 additions and 189 deletions

View File

@@ -1,8 +1,10 @@
import Link from "next/link";
import { thoughts } from "@/data/creativeData";
import { getThoughts } from "@/data/creativeData";
import ExpandableThought from "@/components/ExpandableThought";
export default function ThoughtsPage() {
export default async function ThoughtsPage() {
const thoughts = await getThoughts();
return (
<div className="min-h-screen bg-gradient-to-br from-teal-50 via-green-50 to-blue-50 font-mono">
<div className="max-w-4xl mx-auto px-6 py-12">