From bc711684111751ef1caba7c2c5a993bc601729da Mon Sep 17 00:00:00 2001 From: Danny Delott Date: Wed, 22 Jan 2025 14:28:52 -0800 Subject: [PATCH] Update hyperdrive logo in header and footer (#1735) --- .../src/ui/app/Footer/Footer.tsx | 2 +- .../src/ui/app/Navbar/HyperdriveLogo.tsx | 93 ++++++++++++++++++- 2 files changed, 90 insertions(+), 5 deletions(-) diff --git a/apps/hyperdrive-trading/src/ui/app/Footer/Footer.tsx b/apps/hyperdrive-trading/src/ui/app/Footer/Footer.tsx index 8f08ddb49..c81f02d5b 100644 --- a/apps/hyperdrive-trading/src/ui/app/Footer/Footer.tsx +++ b/apps/hyperdrive-trading/src/ui/app/Footer/Footer.tsx @@ -18,7 +18,7 @@ export default function Footer(): ReactElement { to="/" className="text-h6 inline-flex items-center gap-2 font-extrabold uppercase tracking-widest" > - + Yield, Your Way.
diff --git a/apps/hyperdrive-trading/src/ui/app/Navbar/HyperdriveLogo.tsx b/apps/hyperdrive-trading/src/ui/app/Navbar/HyperdriveLogo.tsx index dcf4848a8..5544a010a 100644 --- a/apps/hyperdrive-trading/src/ui/app/Navbar/HyperdriveLogo.tsx +++ b/apps/hyperdrive-trading/src/ui/app/Navbar/HyperdriveLogo.tsx @@ -1,9 +1,94 @@ -export function HyperdriveLogo(): JSX.Element { +export function HyperdriveLogo({ + height = 40, + width = 200, +}: { + height?: number; + width?: number; +}): JSX.Element { return ( - + + + + + + + + + + + + + + + + + + + + );