diff --git a/components/hero-post.tsx b/components/hero-post.tsx index 30799da..e9bb138 100644 --- a/components/hero-post.tsx +++ b/components/hero-post.tsx @@ -19,46 +19,56 @@ export default function HeroPost({ slug, isCommunity, }) { + const basePath = isCommunity ? "/community" : "/technology"; + excerpt = excerpt.replace("Table of Contents", ""); + return ( -
-
-
- {coverImage && ( - - )} -
-
-
-

- -

-
-
- -
-
- -
-
-
-
-
+
+
+ {/* Banner */} +
+ Latest Blog +
+ + {/* Content */} +
+ {coverImage && ( + + )} +
+
+
+

+ +

+
+
+ +
+
+
-
+
+
+
+
+
+
+ ); }