aboutsummaryrefslogtreecommitdiff
path: root/projects/96/src/app/page.js
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2025-10-30 23:40:37 +0000
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2025-10-30 23:40:37 +0000
commit2131d5fec97f6163678fdec40dd2d6e9f7a5e58c (patch)
tree4e914c764809acdaa869598f10fd5016e386ac53 /projects/96/src/app/page.js
parente9b62b2bc620bae72daa32d6b96bd5e59b2a293f (diff)
downloadzue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.tar
zue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.tar.gz
zue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.tar.bz2
zue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.tar.xz
zue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.zip
restructure repo into a monorepo
Diffstat (limited to 'projects/96/src/app/page.js')
-rw-r--r--projects/96/src/app/page.js59
1 files changed, 59 insertions, 0 deletions
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 (
+ <>
+ <div className="flex flex-col justify-center max-w-2xl mx-auto p-8 space-y-4 min-h-screen">
+ <FadeIn props={{ delay: 0.25 }}>
+ <h1 className="text-4xl font-bold">{metadata.title}</h1>
+ </FadeIn>
+
+ <FadeIn props={{ delay: 0.5 }}>
+ <p className="text-lg">{metadata.description}</p>
+ </FadeIn>
+
+ <FadeIn props={{ delay: 0.75 }}>
+ <div className="flex justify-between items-center gap-4">
+ <div className="flex flex-row gap-4">
+ {[
+ {
+ 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) => (
+ <Link
+ href={social.href}
+ key={social.title}
+ className="transform hover:scale-110 transition-transform"
+ >
+ <img
+ src={social.icon}
+ className="h-[2rem] w-[2rem] object-contain"
+ alt={social.title}
+ title={social.title}
+ />
+ </Link>
+ ))}
+ </div>
+
+ <span className="text-xs opacity-50 text-right p-1">
+ "96" is made with ❤️ by{" "}
+ <a href="https://zue.dev" target="_blank">
+ zue.dev
+ </a>
+ </span>
+ </div>
+ </FadeIn>
+ </div>
+ </>
+ );
+};