Skip to content

Commit

Permalink
fix: seo
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Setch <adam.setch@outlook.com>
  • Loading branch information
setchy committed Dec 4, 2024
1 parent 8dc362b commit e70641f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/layouts/SectionRow.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ export interface Props {
const { title, description = "", anchor, isDark = false } = Astro.props;
---

<div
<section
id={anchor}
class:list={[
"flex px-12 py-16",
isDark ? "bg-gray-800 text-white" : "bg-gray-50",
]}
>
<a id={anchor}></a>
<div
class:list={[
"container max-w-5xl mx-auto flex flex-col items-center",
Expand All @@ -33,4 +33,4 @@ const { title, description = "", anchor, isDark = false } = Astro.props;
<slot />
</div>
</div>
</div>
</section>

0 comments on commit e70641f

Please sign in to comment.