Skip to content

Commit

Permalink
fix(): Hardcode quantinuum logo.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Sep 17, 2024
1 parent 95c004c commit ae7103d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/custom/docs/components/footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export const Footer = (props: { logo: JSX.Element, subtitle: string, columns: {
import { QuantinuumLogo } from "../../QuantinuumLogo";

export const Footer = (props: { subtitle: string, columns: {
title: string;
items: {
name: string;
Expand All @@ -10,7 +12,7 @@ export const Footer = (props: { logo: JSX.Element, subtitle: string, columns: {
<div className="mb-12 md:mb-0">
<div className="-mt-4">
<a href="https://www.quantinuum.com/" target='_blank' className='hover:opacity-75 transition'>
{props.logo}
<QuantinuumLogo/>
</a>
</div>
<p className="max-w-[24rem] text-xs leading-5">
Expand Down

0 comments on commit ae7103d

Please sign in to comment.