From 14e968309da5036711ee0e3995362aa19d7bd7d8 Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Tue, 3 Mar 2026 10:24:12 +0000 Subject: big update! --- source/96/src/app/globals.css | 5 --- source/96/src/app/layout.js | 30 ----------------- source/96/src/app/not-found.js | 31 ------------------ source/96/src/app/opengraph-image.png | Bin 146823 -> 0 bytes source/96/src/app/page.js | 59 ---------------------------------- source/96/src/app/twitter-image.png | Bin 146823 -> 0 bytes 6 files changed, 125 deletions(-) delete mode 100644 source/96/src/app/globals.css delete mode 100644 source/96/src/app/layout.js delete mode 100644 source/96/src/app/not-found.js delete mode 100644 source/96/src/app/opengraph-image.png delete mode 100644 source/96/src/app/page.js delete mode 100644 source/96/src/app/twitter-image.png (limited to 'source/96/src/app') 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 ( - - {children} - - ); -}; 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 ( -
-

404 - Page Not Found

-

- Redirecting to Home in {seconds} seconds... -

-
- ); -}; diff --git a/source/96/src/app/opengraph-image.png b/source/96/src/app/opengraph-image.png deleted file mode 100644 index 5a71def..0000000 Binary files a/source/96/src/app/opengraph-image.png and /dev/null differ 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 ( - <> -
- -

{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 - - -
-
-
- - ); -}; diff --git a/source/96/src/app/twitter-image.png b/source/96/src/app/twitter-image.png deleted file mode 100644 index 5a71def..0000000 Binary files a/source/96/src/app/twitter-image.png and /dev/null differ -- cgit v1.2.3