aboutsummaryrefslogtreecommitdiff
path: root/source/96/src/app/page.js
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-03-03 10:24:12 +0000
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-03-03 10:24:12 +0000
commit14e968309da5036711ee0e3995362aa19d7bd7d8 (patch)
treed3f630ac612fabe4380caa8f7c7b24d64e21f1a8 /source/96/src/app/page.js
parent119e396029a5fd845d32e6c7b1c717254e9546a6 (diff)
downloadzue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar
zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.gz
zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.bz2
zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.xz
zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.zip
big update!
Diffstat (limited to 'source/96/src/app/page.js')
-rw-r--r--source/96/src/app/page.js59
1 files changed, 0 insertions, 59 deletions
diff --git a/source/96/src/app/page.js b/source/96/src/app/page.js
deleted file mode 100644
index 1ceba7d..0000000
--- a/source/96/src/app/page.js
+++ /dev/null
@@ -1,59 +0,0 @@
-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>
- </>
- );
-};