diff --git a/src/blocks/AboutProfile/Component.tsx b/src/blocks/AboutProfile/Component.tsx index a3cc99c..bc4bffd 100644 --- a/src/blocks/AboutProfile/Component.tsx +++ b/src/blocks/AboutProfile/Component.tsx @@ -46,7 +46,7 @@ export function AboutProfileBlock({ return ( // Standardized vertical padding and alignment -
+
{(heading || subheading) && (
{heading && ( diff --git a/src/blocks/BentoRow/Component.tsx b/src/blocks/BentoRow/Component.tsx index aa88f35..26bd8cb 100644 --- a/src/blocks/BentoRow/Component.tsx +++ b/src/blocks/BentoRow/Component.tsx @@ -19,7 +19,7 @@ export function BentoRowBlock(props: BentoRowBlockProps) { return ( // Standardized vertical padding and container constraints -
+
{/* About Section */}
diff --git a/src/blocks/Contact/Component.tsx b/src/blocks/Contact/Component.tsx index 971a314..ecb5ebe 100644 --- a/src/blocks/Contact/Component.tsx +++ b/src/blocks/Contact/Component.tsx @@ -19,7 +19,7 @@ export function ContactBlock(props: ContactBlockProps) { const { heading, subtext, email, links } = props return ( -
+
diff --git a/src/blocks/KanbanColor/Component.tsx b/src/blocks/KanbanColor/Component.tsx index 674fa37..085a39f 100644 --- a/src/blocks/KanbanColor/Component.tsx +++ b/src/blocks/KanbanColor/Component.tsx @@ -19,7 +19,7 @@ export function KanbanColorBlock({ columns }: Props) { return ( // Standardized vertical padding to match other page sections -
+
{columns.map((col, i) => { const { border, dot } = colorMap[col.color ?? 'gray'] ?? colorMap.gray diff --git a/src/blocks/Showcase/Component.tsx b/src/blocks/Showcase/Component.tsx index 0fc5ba2..059f659 100644 --- a/src/blocks/Showcase/Component.tsx +++ b/src/blocks/Showcase/Component.tsx @@ -71,7 +71,7 @@ export function ShowcaseBlock(props: ShowcaseBlockProps): React.ReactElement | n if (!Array.isArray(items) || items.length === 0) return null return ( -
+
{(heading || subheading) && (
{heading &&

{heading}

} diff --git a/src/blocks/Skills/Component.tsx b/src/blocks/Skills/Component.tsx index 639884b..1510161 100644 --- a/src/blocks/Skills/Component.tsx +++ b/src/blocks/Skills/Component.tsx @@ -14,7 +14,7 @@ type SkillsBlockProps = { export function SkillsBlock({ heading, keySkills, categories }: SkillsBlockProps) { return ( -
+
{heading && (

{heading} diff --git a/src/blocks/StatsStrip/Component.tsx b/src/blocks/StatsStrip/Component.tsx index c39d6a6..db2789b 100644 --- a/src/blocks/StatsStrip/Component.tsx +++ b/src/blocks/StatsStrip/Component.tsx @@ -2,7 +2,7 @@ export function StatsStripBlock({ stats }: StatsStripProps) { if (!Array.isArray(stats) || stats.length === 0) return null return ( -

+
{stats.map((stat, i) => ( diff --git a/src/blocks/ToolStack/Component.tsx b/src/blocks/ToolStack/Component.tsx index 9a4487d..8bd6a42 100644 --- a/src/blocks/ToolStack/Component.tsx +++ b/src/blocks/ToolStack/Component.tsx @@ -10,7 +10,7 @@ export function ToolStackBlock({ heading, tools }: ToolStackBlockProps) { return ( // Standardized vertical spacing to match other page sections -
+
{heading && (