This commit is contained in:
chronark 2023-05-19 20:58:19 +02:00
commit 10237b1a63
No known key found for this signature in database
3 changed files with 13 additions and 6 deletions

View File

@ -67,7 +67,7 @@ export const Header: React.FC<Props> = ({ project, views }) => {
views,
)}
</span>
<Link target="_blank" href="https://twitter/chronark_">
<Link target="_blank" href="https://twitter.com/chronark_">
<Twitter
className={`w-6 h-6 duration-200 hover:font-medium ${
isIntersecting

View File

@ -87,12 +87,9 @@ export default async function ProjectsPage() {
{featured.description}
</p>
<div className="absolute bottom-4 md:bottom-8">
<Link
className="hidden text-zinc-200 hover:text-zinc-50 lg:block"
href={`/projects/${featured.slug}`}
>
<p className="hidden text-zinc-200 hover:text-zinc-50 lg:block">
Read more <span aria-hidden="true">&rarr;</span>
</Link>
</p>
</div>
</article>
</Link>

View File

@ -11,6 +11,16 @@ module.exports = {
theme: {
extend: {
typography: {
DEFAULT: {
css: {
"code::before": {
content: '""',
},
"code::after": {
content: '""',
},
},
},
quoteless: {
css: {
"blockquote p:first-of-type::before": { content: "none" },