Logo
- -M
-C
-D
-M
-C
-D
-diff --git a/app/logo/page.tsx b/app/logo/page.tsx
deleted file mode 100644
index 24e1259..0000000
--- a/app/logo/page.tsx
+++ /dev/null
@@ -1,77 +0,0 @@
-'use client'
-import { useEffect, useState } from "react";
-import { DefaultColors } from "tailwindcss/types/generated/colors";
-
-const LOOPING_ENABLED_ON_SECOND_LOGO = true;
-const SHIFT_INTERVAL = 3000;
-
-export default function LogoPage() {
- const [circleColors, setCircleColors] = useState<{ [key: string]: typeof colorList[number] | "" }>({
- firstColor: "",
- secondColor: "",
- thirdColor: "",
- })
-
- const colorList: (`bg-${keyof DefaultColors}` | `bg-${keyof DefaultColors}-${string}`)[] = [
- "bg-purple-400",
- "bg-purple-700",
- "bg-sky-400",
- "bg-sky-700",
- "bg-blue-400",
- "bg-pink-400",
- "bg-pink-700",
- ];
-
- function handleHover() {
- const firstColor = colorList[Math.floor(Math.random() * colorList.length | 0)]
- const secondColor = colorList[Math.floor(Math.random() * colorList.length | 0)]
- const thirdColor = colorList[Math.floor(Math.random() * colorList.length | 0)]
-
- setCircleColors({ firstColor, secondColor, thirdColor });
- }
-
- useEffect(handleHover, []);
-
- useEffect(() => {
- if (LOOPING_ENABLED_ON_SECOND_LOGO) {
- const interval = setInterval(() => {
- handleHover();
- }, SHIFT_INTERVAL);
-
- return () => clearInterval(interval);
- }
- }, [])
-
- return (
- M C D M C DLogo
-
-
M
C
D