diff --git a/packages/web/components/elements/images/OmnivoreFestiveLogo.tsx b/packages/web/components/elements/images/OmnivoreFestiveLogo.tsx new file mode 100644 index 000000000..aca045d1e --- /dev/null +++ b/packages/web/components/elements/images/OmnivoreFestiveLogo.tsx @@ -0,0 +1,33 @@ +import { config } from '../../tokens/stitches.config' +import Image from 'next/image' +import Link from 'next/link' + +export type OmnivoreFestiveLogoProps = { + color?: string + href?: string +} + +export function OmnivoreFestiveLogo( + props: OmnivoreFestiveLogoProps +): JSX.Element { + const fillColor = props.color || config.theme.colors.graySolid + const href = props.href || '/home' + + return ( + + + + + + ) +}