aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/HeaderLogo.tsx
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-11-03 21:13:33 +0800
committer简律纯 <i@jyunko.cn>2023-11-03 21:13:33 +0800
commit9f0d43fe099a95ab1516ae951dcb60a89e76a5a5 (patch)
tree51614fe47bff8bb11028a07d4a35c34c9ff6594a /docs/components/HeaderLogo.tsx
parent8f135707d069c900e055dae71e69909d6b9a41bb (diff)
downloadHydroRoll-9f0d43fe099a95ab1516ae951dcb60a89e76a5a5.tar.gz
HydroRoll-9f0d43fe099a95ab1516ae951dcb60a89e76a5a5.zip
chore: delete useless codes
Diffstat (limited to 'docs/components/HeaderLogo.tsx')
-rw-r--r--docs/components/HeaderLogo.tsx36
1 files changed, 0 insertions, 36 deletions
diff --git a/docs/components/HeaderLogo.tsx b/docs/components/HeaderLogo.tsx
deleted file mode 100644
index a1fc395..0000000
--- a/docs/components/HeaderLogo.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import SiteSwitcher from "./SiteSwitcher";
-import Link from "next/link";
-import styles from "./header-logo.module.css";
-import TurboAnimated from "./logos/TurboAnimated";
-import { LogoContext } from "./LogoContext";
-
-function HeaderLogo() {
- return (
- <>
- <LogoContext />
- <svg
- data-testid="geist-icon"
- fill="none"
- height={24}
- shapeRendering="geometricPrecision"
- stroke="currentColor"
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth="1.5"
- viewBox="0 0 24 24"
- className="dark:text-[#333] text-[#eaeaea] ml-2 mr-1"
- >
- <path d="M16.88 3.549L7.12 20.451" />
- </svg>
-
- <Link href="/" title="Home" className="hover:opacity-75">
- <TurboAnimated height={32} />
- </Link>
- <div className={styles.siteSwitcher}>
- <SiteSwitcher />
- </div>
- </>
- );
-}
-
-export default HeaderLogo;