diff --git a/fallctf.com/src/components/FallCTFLogo.tsx b/fallctf.com/src/components/FallCTFLogo.tsx index 9decb59d8..8f50ff292 100644 --- a/fallctf.com/src/components/FallCTFLogo.tsx +++ b/fallctf.com/src/components/FallCTFLogo.tsx @@ -1,3 +1,5 @@ +import { motion } from 'framer-motion'; + interface Props { year?: string; color?: string; @@ -5,11 +7,13 @@ interface Props { export default function FallCTFLogo({ year, color }: Props) { return ( - <> +

Fall CTF {year ?  {year} : null}

- +
) } \ No newline at end of file diff --git a/fallctf.com/src/components/TabNav.tsx b/fallctf.com/src/components/TabNav.tsx index be5ee11d0..9e6b75932 100644 --- a/fallctf.com/src/components/TabNav.tsx +++ b/fallctf.com/src/components/TabNav.tsx @@ -12,7 +12,7 @@ interface Props { export default function TabNav({ id, links }: Props) { return ( -