diff --git a/app/components/Header.tsx b/app/components/Header.tsx index 3d57642..f02d6e3 100644 --- a/app/components/Header.tsx +++ b/app/components/Header.tsx @@ -2,13 +2,13 @@ import { CircleUser, Globe2, Lock, - PlaneTakeoff, Server, Settings, Users, } from 'lucide-react'; import type { ReactNode } from 'react'; import { NavLink, useSubmit } from 'react-router'; +import Logo from '~/components/Logo'; import Menu from '~/components/Menu'; import { AuthSession } from '~/server/web/sessions'; import cn from '~/utils/cn'; @@ -91,7 +91,7 @@ export default function Header(data: Props) { >
- +

headplane

diff --git a/app/components/Logo.tsx b/app/components/Logo.tsx new file mode 100644 index 0000000..cb44372 --- /dev/null +++ b/app/components/Logo.tsx @@ -0,0 +1,10 @@ +import cn from '~/utils/cn'; +import LogoSvg from '../../public/logo-light.svg'; + +export interface LogoProps { + className?: string; +} + +export default function Logo({ className }: LogoProps) { + return Logo; +} diff --git a/app/root.tsx b/app/root.tsx index 71ebcad..6cccf27 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -41,6 +41,7 @@ export function Layout({ children }: { readonly children: React.ReactNode }) { + {children} diff --git a/public/favicon.ico b/public/favicon.ico index 8830cf6..b13b791 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/logo-dark-bg.svg b/public/logo-dark-bg.svg new file mode 100644 index 0000000..25dd539 --- /dev/null +++ b/public/logo-dark-bg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/logo-dark.svg b/public/logo-dark.svg new file mode 100644 index 0000000..6178374 --- /dev/null +++ b/public/logo-dark.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/logo-light-bg.svg b/public/logo-light-bg.svg new file mode 100644 index 0000000..70832cd --- /dev/null +++ b/public/logo-light-bg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/logo-light.svg b/public/logo-light.svg new file mode 100644 index 0000000..a106898 --- /dev/null +++ b/public/logo-light.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + +