aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Branding/Branding.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-27 15:58:14 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-27 16:13:18 +0100
commitde11222e4cecfdfd4d45f3ec1220ebc1bcb9c8c1 (patch)
tree630b5d3f33969873c48890f149e7f1f66435a7ed /src/components/Branding/Branding.tsx
parentd5d8a461f0ee8abdd5f19a6f5a7a288b1f025724 (diff)
chore: update logo
Adjust previous colors to fit the new website and add a dark version to better fit with the dark theme.
Diffstat (limited to 'src/components/Branding/Branding.tsx')
-rw-r--r--src/components/Branding/Branding.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Branding/Branding.tsx b/src/components/Branding/Branding.tsx
index 5e2cf6a..01948e9 100644
--- a/src/components/Branding/Branding.tsx
+++ b/src/components/Branding/Branding.tsx
@@ -3,11 +3,11 @@ import Link from 'next/link';
import { ReactElement } from 'react';
import { t } from '@lingui/macro';
import photo from '@assets/images/armand-philippot.jpg';
-import Logo from '@assets/images/armand-philippot-logo.svg';
import { config } from '@config/website';
import styles from './Branding.module.scss';
import Head from 'next/head';
import { Person, WithContext } from 'schema-dts';
+import Logo from './Logo/Logo';
type BrandingReturn = ({ isHome }: { isHome: boolean }) => ReactElement;