diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-03-03 10:24:12 +0000 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-03-03 10:24:12 +0000 |
| commit | 14e968309da5036711ee0e3995362aa19d7bd7d8 (patch) | |
| tree | d3f630ac612fabe4380caa8f7c7b24d64e21f1a8 /source/96/src | |
| parent | 119e396029a5fd845d32e6c7b1c717254e9546a6 (diff) | |
| download | zue.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')
| -rw-r--r-- | source/96/src/app/globals.css | 5 | ||||
| -rw-r--r-- | source/96/src/app/layout.js | 30 | ||||
| -rw-r--r-- | source/96/src/app/not-found.js | 31 | ||||
| -rw-r--r-- | source/96/src/app/opengraph-image.png | bin | 146823 -> 0 bytes | |||
| -rw-r--r-- | source/96/src/app/page.js | 59 | ||||
| -rw-r--r-- | source/96/src/app/twitter-image.png | bin | 146823 -> 0 bytes | |||
| -rw-r--r-- | source/96/src/components/animations/FadeIn.js | 17 | ||||
| -rw-r--r-- | source/96/src/data/talent.js | 179 |
8 files changed, 0 insertions, 321 deletions
diff --git a/source/96/src/app/globals.css b/source/96/src/app/globals.css deleted file mode 100644 index dad740a..0000000 --- a/source/96/src/app/globals.css +++ /dev/null @@ -1,5 +0,0 @@ -@import "tailwindcss"; - -p { - text-align: justify; -} diff --git a/source/96/src/app/layout.js b/source/96/src/app/layout.js deleted file mode 100644 index 7d7f919..0000000 --- a/source/96/src/app/layout.js +++ /dev/null @@ -1,30 +0,0 @@ -import "./globals.css"; -import { Space_Mono } from "next/font/google"; - -const mainFont = Space_Mono({ - weight: ["400", "700"], - style: ["normal", "italic"], - subsets: ["latin-ext"], - display: "swap", -}); - -export const metadata = { - metadataBase: new URL("https://96.zue.dev"), - title: "96: Where creatives thrive.", - description: - "Experience a fresh, open-source revolution in digital empowerment. We fuse influencer marketing with post-modern innovation into a full-service online talent management platform—designed so you can shine while we handle every digital detail.", - icons: { - icon: "/96_logo.png", - }, -}; - -export default ({ children }) => { - return ( - <html - lang="en" - className={`${mainFont.className} bg-linear-to-br from-green-500 to-emerald-500 text-black min-h-screen`} - > - <body>{children}</body> - </html> - ); -}; diff --git a/source/96/src/app/not-found.js b/source/96/src/app/not-found.js deleted file mode 100644 index 7298535..0000000 --- a/source/96/src/app/not-found.js +++ /dev/null @@ -1,31 +0,0 @@ -"use client"; - -import { useEffect, useState } from "react"; -import { useRouter } from "next/navigation"; - -export default () => { - const router = useRouter(); - - const [seconds, setSeconds] = useState(5); - - useEffect(() => { - const interval = setInterval(() => { - setSeconds((prev) => prev - 1); - }, 1000); - - if (seconds === 0) { - router.push("/"); - } - - return () => clearInterval(interval); - }, [seconds]); - - return ( - <div className="min-h-screen flex flex-col justify-center items-center space-y-4"> - <h2 className="text-3xl font-bold">404 - Page Not Found</h2> - <p> - Redirecting to <a href="/">Home</a> in {seconds} seconds... - </p> - </div> - ); -}; diff --git a/source/96/src/app/opengraph-image.png b/source/96/src/app/opengraph-image.png Binary files differdeleted file mode 100644 index 5a71def..0000000 --- a/source/96/src/app/opengraph-image.png +++ /dev/null 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> - </> - ); -}; diff --git a/source/96/src/app/twitter-image.png b/source/96/src/app/twitter-image.png Binary files differdeleted file mode 100644 index 5a71def..0000000 --- a/source/96/src/app/twitter-image.png +++ /dev/null diff --git a/source/96/src/components/animations/FadeIn.js b/source/96/src/components/animations/FadeIn.js deleted file mode 100644 index 21589ce..0000000 --- a/source/96/src/components/animations/FadeIn.js +++ /dev/null @@ -1,17 +0,0 @@ -"use client"; - -import { motion } from "motion/react"; - -export default ({ children, props }) => { - const { duration = 1, delay = 0 } = props || {}; - - return ( - <motion.div - initial={{ opacity: 0 }} - animate={{ opacity: 1 }} - transition={{ duration, delay }} - > - {children} - </motion.div> - ); -}; diff --git a/source/96/src/data/talent.js b/source/96/src/data/talent.js deleted file mode 100644 index eafe0d6..0000000 --- a/source/96/src/data/talent.js +++ /dev/null @@ -1,179 +0,0 @@ -export default [ - { - name: "YayJayBae", - description: "Two-Form Dragon Bat Vtuber", - website: "https://yayjaybae.com", - socials: [ - { - href: "https://x.com/yayjaybae", - icon: "https://cdn.simpleicons.org/x/white", - title: "X/Twitter", - }, - { - href: "https://twitch.tv/yayjaybae", - icon: "https://cdn.simpleicons.org/twitch/white", - title: "Twitch", - }, - { - href: "https://discord.gg/emrjUtKbUR", - icon: "https://cdn.simpleicons.org/discord/white", - title: "Discord", - }, - { - href: "https://www.youtube.com/@yayjaybae", - icon: "https://cdn.simpleicons.org/youtube", - title: "YouTube", - }, - { - href: "https://www.tiktok.com/@yayjaybae", - icon: "https://cdn.simpleicons.org/tiktok", - title: "TikTok", - }, - { - name: "JustAWoney", - description: "Existential Horror Vtuber", - website: "https://linktr.ee/justawoney", - socials: [ - { - href: "https://www.twitch.tv/justawoney", - icon: "https://cdn.simpleicons.org/twitch", - title: "Twitch", - }, - { - href: "https://twitter.com/justawoney", - icon: "https://cdn.simpleicons.org/x", - title: "X/Twitter", - }, - { - href: "https://www.youtube.com/@JustAWoney", - icon: "https://cdn.simpleicons.org/youtube", - title: "YouTube", - }, - { - href: "https://www.tiktok.com/@justawoney", - icon: "https://cdn.simpleicons.org/tiktok", - title: "TikTok", - }, - { - href: "https://discord.gg/t8GQsat32Y", - icon: "https://cdn.simpleicons.org/discord", - title: "Discord", - }, - ], - }, - { - name: "TygiWygi", - description: "Floofy Tiger Monstergirl", - website: "https://tygismaragd.carrd.co", - socials: [ - { - href: "https://www.youtube.com/@TygiWygi", - icon: "https://cdn.simpleicons.org/youtube", - title: "YouTube", - }, - { - href: "https://twitter.com/TygiWygi", - icon: "https://cdn.simpleicons.org/x", - title: "X/Twitter", - }, - { - href: "https://www.twitch.tv/tygiwygi", - icon: "https://cdn.simpleicons.org/twitch", - title: "Twitch", - }, - { - href: "https://discord.gg/eh8WGUt5uy", - icon: "https://cdn.simpleicons.org/discord", - title: "Discord", - }, - ], - }, - { - name: "NarikoNabi", - description: "The North Star", - website: "https://beacons.ai/narikonabi", - socials: [ - { - href: "https://twitter.com/NarikoNabi", - icon: "https://cdn.simpleicons.org/x", - title: "X/Twitter", - }, - { - href: "https://www.twitch.tv/narikonabi", - icon: "https://cdn.simpleicons.org/twitch", - title: "Twitch", - }, - { - href: "https://www.youtube.com/@BlackVirtualEntertainment", - icon: "https://cdn.simpleicons.org/youtube", - title: "YouTube", - }, - ], - }, - { - name: "Sweets", - description: "Cyberpunk Catgirl Fixer", - website: "https://teamsweets.com", - socials: [ - { - href: "https://twitch.tv/vtSweets", - icon: "https://cdn.simpleicons.org/twitch", - title: "Twitch", - }, - { - href: "https://x.com/vtubersweets", - icon: "https://cdn.simpleicons.org/x", - title: "X/Twitter", - }, - { - href: "https://bsky.app/profile/vtubersweets.bsky.social", - icon: "https://cdn.simpleicons.org/bluesky", - title: "BlueSky", - }, - { - href: "https://www.tiktok.com/@vt.sweets", - icon: "https://cdn.simpleicons.org/tiktok", - title: "TikTok", - }, - ], - }, - { - name: "BunniBana", - description: "Pyro Bunny of the BanaBeans!", - website: "https://bunnibana.carrd.co/", - socials: [ - { - href: "https://www.twitch.tv/bunnibana", - icon: "https://cdn.simpleicons.org/twitch", - title: "Twitch", - }, - { - href: "https://x.com/BunniBana", - icon: "https://cdn.simpleicons.org/x", - title: "X/Twitter", - }, - { - href: "https://bsky.app/profile/bunnibana.bsky.social", - icon: "https://cdn.simpleicons.org/bluesky", - title: "BlueSky", - }, - { - href: "https://www.tiktok.com/@bunnibana", - icon: "https://cdn.simpleicons.org/tiktok", - title: "TikTok", - }, - { - href: "https://www.youtube.com/@bunnibanach", - icon: "https://cdn.simpleicons.org/youtube", - title: "YouTube", - }, - { - href: "https://open.spotify.com/artist/0o0MabTbNZqT8ZQkM93bqA?si=NZSK_LnkRjCyaX0phc-U4g", - icon: "https://cdn.simpleicons.org/spotify", - title: "Spotify", - }, - ], - }, - ], - }, -]; |
