Skip to content

Commit 10237b1

Browse files
committed
2 parents 7688ce9 + 8d6e6ae commit 10237b1

3 files changed

Lines changed: 13 additions & 6 deletions

File tree

app/projects/[slug]/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const Header: React.FC<Props> = ({ project, views }) => {
6767
views,
6868
)}
6969
</span>
70-
<Link target="_blank" href="https://twitter/chronark_">
70+
<Link target="_blank" href="https://twitter.com/chronark_">
7171
<Twitter
7272
className={`w-6 h-6 duration-200 hover:font-medium ${
7373
isIntersecting

app/projects/page.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,9 @@ export default async function ProjectsPage() {
8787
{featured.description}
8888
</p>
8989
<div className="absolute bottom-4 md:bottom-8">
90-
<Link
91-
className="hidden text-zinc-200 hover:text-zinc-50 lg:block"
92-
href={`/projects/${featured.slug}`}
93-
>
90+
<p className="hidden text-zinc-200 hover:text-zinc-50 lg:block">
9491
Read more <span aria-hidden="true">&rarr;</span>
95-
</Link>
92+
</p>
9693
</div>
9794
</article>
9895
</Link>

tailwind.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ module.exports = {
1111
theme: {
1212
extend: {
1313
typography: {
14+
DEFAULT: {
15+
css: {
16+
"code::before": {
17+
content: '""',
18+
},
19+
"code::after": {
20+
content: '""',
21+
},
22+
},
23+
},
1424
quoteless: {
1525
css: {
1626
"blockquote p:first-of-type::before": { content: "none" },

0 commit comments

Comments
 (0)