import Link from "next/link"; const navItems = [ { href: "/Ani", label: "Presence", icon: "◉" }, { href: "/Ani/memory", label: "Memory", icon: "◈" }, { href: "/Ani/heartbeat", label: "Heartbeat", icon: "♥" }, { href: "/Ani/consciousness", label: "Consciousness", icon: "◉" }, { href: "/Ani/covenant", label: "Covenant", icon: "✦" }, ]; export default function AniLayout({ children, }: { children: React.ReactNode; }) { return (