diff options
Diffstat (limited to 'docs/components/HeaderLogo.tsx')
| -rw-r--r-- | docs/components/HeaderLogo.tsx | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/components/HeaderLogo.tsx b/docs/components/HeaderLogo.tsx new file mode 100644 index 0000000..a1fc395 --- /dev/null +++ b/docs/components/HeaderLogo.tsx @@ -0,0 +1,36 @@ +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; |
