From 0d0a6791fd08253493ab28b0fa3903458815a614 Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Sat, 8 Oct 2022 14:07:56 +0200 Subject: [PATCH] a in Link so noscript works --- components/Blog/Card.tsx | 11 ++++++----- components/Blog/Navigation.tsx | 12 +++++++----- styles/globals.scss | 5 +++++ 3 files changed, 18 insertions(+), 10 deletions(-) diff --git a/components/Blog/Card.tsx b/components/Blog/Card.tsx index 82c467d..958c0db 100644 --- a/components/Blog/Card.tsx +++ b/components/Blog/Card.tsx @@ -10,11 +10,12 @@ interface IContentCard { } const ContentCard: NextPage = (content: IContentCard) => { - return -
-

{content.title}

-

{content.description}

-
+ return +
+

{content.title}

+

{content.description}

+
+
; }; diff --git a/components/Blog/Navigation.tsx b/components/Blog/Navigation.tsx index b1dce0a..54f06d3 100644 --- a/components/Blog/Navigation.tsx +++ b/components/Blog/Navigation.tsx @@ -5,11 +5,13 @@ import styles from "../../styles/Blog/Navigation.module.scss"; const Navigation: NextPage<{}> = () => { return