From d07ba366d60caf0763530f0f30d1a35f2e7cd3ae Mon Sep 17 00:00:00 2001 From: Tymon Date: Sun, 15 Dec 2024 09:08:11 +0100 Subject: [PATCH] chore: add footer tag, make h2 headers upper case, increase horizontal spacing between lists in mobile view --- src/components/Footer.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 0d6f9b8..39b30ac 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -4,7 +4,7 @@ import Link from "next/link"; function List({ text, children }: { text: string; children: React.ReactNode }) { return (
-

{text}

+

{text}

); @@ -30,7 +30,7 @@ function ListItem({ function Footer() { return ( - <> + ); }