diff --git a/src/blocks/BentoRow/Component.tsx b/src/blocks/BentoRow/Component.tsx deleted file mode 100644 index cee6c9e..0000000 --- a/src/blocks/BentoRow/Component.tsx +++ /dev/null @@ -1,97 +0,0 @@ -'use client' - -import React from 'react' -import { Container } from '@/components/ui/Container' // Ensure this path is correct -import type { Skill } from '@/payload-types' // Adjust import based on your project - -type BentoRowBlockProps = { - aboutHeading?: string - aboutText?: string - aboutCta?: { label?: string; url?: string; newTab?: boolean } - skillsHeading?: string - skills?: Skill[] -} - -export function BentoRowBlock(props: BentoRowBlockProps) { - const { aboutHeading, aboutText, aboutCta, skillsHeading, skills } = props - - return ( - // Replaced hardcoded max-w-5xl and section with the unified Container - -
- {/* About Section */} -
-
- {aboutHeading && ( -

- {aboutHeading} -

- )} - {aboutText && ( -

- {aboutText} -

- )} -
- {aboutCta && aboutCta.label && aboutCta.url && ( - -