diff --git a/apps/webapp/app/assets/images/logo.png b/apps/webapp/app/assets/images/logo.png new file mode 100644 index 000000000..1d3bf1829 Binary files /dev/null and b/apps/webapp/app/assets/images/logo.png differ diff --git a/apps/webapp/app/components/Logo.tsx b/apps/webapp/app/components/Logo.tsx index 1ad2c824d..28448800f 100644 --- a/apps/webapp/app/components/Logo.tsx +++ b/apps/webapp/app/components/Logo.tsx @@ -1,3 +1,5 @@ +import logoImage from "../assets/images/logo.png"; + export function Logo({ className, width = "100%", @@ -5,159 +7,5 @@ export function Logo({ className?: string; width?: string; }) { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); + return Logo; }