From b748dc2ff30530862f5e945844163c8d54ef1873 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Wed, 13 Nov 2024 15:45:54 +0000 Subject: [PATCH] fix: remove double ai footer thing --- src/templates/main/Main.jsx | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/src/templates/main/Main.jsx b/src/templates/main/Main.jsx index c6731d7..477f7b6 100644 --- a/src/templates/main/Main.jsx +++ b/src/templates/main/Main.jsx @@ -3,22 +3,15 @@ import Header from "../../components/Header/Header" import notByAiBadge from "../../img/not-by-ai-alternative--gruvbox-material6.svg" export default function Main(props) { - return ( - <> -
-
- {props.children} - Written by a human, not by AI -
-
- - Mastodon - -
- - ) + return ( + <> +
+
{props.children}
+
+ + Mastodon + +
+ + ) }