Skip to content

Commit

Permalink
removing unused classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash Smith committed Sep 12, 2023
1 parent 1274e70 commit d43e7ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/post/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function ProjectSlugRoute(
<meta name="twitter:site" content="@ashsmithco" />
<meta name="twitter:creator" content="@ashsmithco" />
</Head>
<section className="post">
<section className="mt-2 mb-4">
{post.mainImage && (
<Image
className="post__cover"
Expand All @@ -80,11 +80,11 @@ export default function ProjectSlugRoute(
alt=""
/>
)}
<div className="post__container">
<div>
<h1 className="text-6xl font-extrabold leading-tight">{post.title}</h1>
<p className="font-bold italic text-xl leading-loose">{post.excerpt}</p>
<p className="font-extrabold leading-loose">{formatDate(post._createdAt)}</p>
<div className="">
<div>
<PortableText
value={post.body}
onMissingComponent={(e) => console.log(e)}
Expand Down

0 comments on commit d43e7ad

Please sign in to comment.