diff --git a/public/icons/ic-logo.svg b/public/icons/ic-logo.svg new file mode 100644 index 0000000..6918cb2 --- /dev/null +++ b/public/icons/ic-logo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx index 499fc77..fa4f463 100644 --- a/src/components/Logo.tsx +++ b/src/components/Logo.tsx @@ -1,13 +1,97 @@ +import { IconProps } from "~/utils/types"; + export function Logo() { return ( -
-

- PEOPLE–WORK +
+

+ PEOPLE–WORK.NET

- (.NET) + + {/* (.NET) */}
); } + +function LogoIcon({ className }: IconProps) { + return ( + + + + + + + + + + + + + + + + ); +}