aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/HeaderLogo.tsx
diff options
context:
space:
mode:
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;