Skip to content

Commit

Permalink
fixed dark heading
Browse files Browse the repository at this point in the history
  • Loading branch information
jewlexx committed Jan 8, 2025
1 parent 19d4241 commit 333daf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/projects/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default async function Page({ params }: { params: Promise<{ slug: string
].filter(({ link }) => link);

return (
<div className="column prose min-w-full text-base-content prose-headings:mt-8 prose-headings:font-semibold prose-headings:text-black prose-h1:text-5xl prose-h2:text-4xl prose-h3:text-3xl prose-h4:text-2xl prose-h5:text-xl prose-h6:text-lg dark:prose-headings:text-white">
<div className="column prose min-w-full prose-headings:mt-8 prose-headings:font-semibold prose-h1:text-5xl prose-h2:text-4xl prose-h3:text-3xl prose-h4:text-2xl prose-h5:text-xl prose-h6:text-lg dark:prose-headings:text-white">
{hideHero ? null : <Image src={heroImage} alt={title} width={500} height={200} priority />}
<h1>{title}</h1>
<p>{description}</p>
Expand Down

0 comments on commit 333daf7

Please sign in to comment.