From 73deddadbf71e4fbc9266b453d8094aa0c9fc0ad Mon Sep 17 00:00:00 2001 From: LuigiR5 <147706705+LuigiR5@users.noreply.github.com> Date: Mon, 16 Feb 2026 00:12:32 -0800 Subject: [PATCH] nit: incosistency in header padding --- src/components/SectionHeader.astro | 71 ++++++++++++++++++++++++++++ src/pages/index.astro | 76 +++++++----------------------- 2 files changed, 88 insertions(+), 59 deletions(-) create mode 100644 src/components/SectionHeader.astro diff --git a/src/components/SectionHeader.astro b/src/components/SectionHeader.astro new file mode 100644 index 0000000..59165b9 --- /dev/null +++ b/src/components/SectionHeader.astro @@ -0,0 +1,71 @@ +--- +interface Props { + title: string; + link?: { + href: string; + text: string; + }; +} + +const { title, link } = Astro.props; +--- + +