From 2131d5fec97f6163678fdec40dd2d6e9f7a5e58c Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Thu, 30 Oct 2025 23:40:37 +0000 Subject: restructure repo into a monorepo --- projects/96/src/app/page.js | 59 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 projects/96/src/app/page.js (limited to 'projects/96/src/app/page.js') diff --git a/projects/96/src/app/page.js b/projects/96/src/app/page.js new file mode 100644 index 0000000..1ceba7d --- /dev/null +++ b/projects/96/src/app/page.js @@ -0,0 +1,59 @@ +import Link from "next/link"; +import { metadata } from "./layout"; +import FadeIn from "@/components/animations/FadeIn"; +import talent from "@/data/talent"; + +export default () => { + return ( + <> +
+ +

{metadata.title}

+
+ + +

{metadata.description}

+
+ + +
+
+ {[ + { + href: "https://x.com/area96digital", + icon: "https://cdn.simpleicons.org/x/black", + title: "X/Twitter", + }, + { + href: "https://bsky.app/profile/96.zue.dev", + icon: "https://cdn.simpleicons.org/bluesky/black", + title: "Bluesky", + }, + ].map((social) => ( + + {social.title} + + ))} +
+ + + "96" is made with ❤️ by{" "} + + zue.dev + + +
+
+
+ + ); +}; -- cgit v1.2.3