diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-26 02:26:33 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-26 02:27:55 +0000 |
| commit | d1e8b0017dee12e04dbad9e85f7a8b497e584d1b (patch) | |
| tree | ecf1cb4b9ec291776dada965179a2cf9652cc537 /apps/landing/components | |
| parent | 4ab081511b328085d6c7c9990da2abc1a6e920e1 (diff) | |
| download | karakeep-d1e8b0017dee12e04dbad9e85f7a8b497e584d1b.tar.zst | |
ui: Migrate to the new logo everywhere
Diffstat (limited to 'apps/landing/components')
| -rw-r--r-- | apps/landing/components/HoarderLogo.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/landing/components/HoarderLogo.tsx b/apps/landing/components/HoarderLogo.tsx new file mode 100644 index 00000000..a4b76f6a --- /dev/null +++ b/apps/landing/components/HoarderLogo.tsx @@ -0,0 +1,20 @@ +import HoarderLogoIcon from "@/public/icons/logo-icon.svg"; +import HoarderLogoText from "@/public/icons/logo-text.svg"; + +export default function HoarderLogo({ + height, + gap, +}: { + height: number; + gap: string; +}) { + return ( + <span style={{ gap }} className="flex items-center"> + <HoarderLogoIcon height={height} className={`fill-foreground`} /> + <HoarderLogoText + height={(height * 2) / 3} + className={`fill-foreground`} + /> + </span> + ); +} |
