From 961ab6976409d6169d2a5bac220ead45c941982d Mon Sep 17 00:00:00 2001 From: justjoseph0 Date: Sat, 20 Jul 2024 14:18:31 -0700 Subject: [PATCH] fix: escape unescaped characters in About.tsx to resolve ESLint error --- app/components/BlogCards.tsx | 24 ++++++++++++------------ app/routes/About.tsx | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app/components/BlogCards.tsx b/app/components/BlogCards.tsx index 4189fef2..630a6f1a 100644 --- a/app/components/BlogCards.tsx +++ b/app/components/BlogCards.tsx @@ -1,6 +1,6 @@ import React from "react"; -interface BlogCardProps { +interface BlogCardProperties { title: string; description: string; date: string; @@ -12,7 +12,7 @@ interface BlogCardProps { link: string; } -const BlogCard: React.FC = ({ +const BlogCard: React.FC = ({ title, description, date, @@ -24,31 +24,31 @@ const BlogCard: React.FC = ({ link, }) => { return ( -
- {title} -
-
- +
+ {title} +
+
+ {tag}
-

{title}

+

{title}

-

{description}

+

{description}

-
+
{date} {timeOfReading} mins Read
{authorName}
-

{authorName}

+

{authorName}

diff --git a/app/routes/About.tsx b/app/routes/About.tsx index df20a387..874bba63 100644 --- a/app/routes/About.tsx +++ b/app/routes/About.tsx @@ -47,7 +47,7 @@ export default function Aboutpage() {

Since our founding in, Hng Boilerplate has been dedicated to constantly evolving to stay ahead of the curve. Our agile mindset - and relentless pursuit of innovation ensure that you're always + and relentless pursuit of innovation ensure that youre always equipped with the most effective tools and strategies.

@@ -163,7 +163,7 @@ export default function Aboutpage() {
{/* executive team */} -
+