diff --git a/src/components/AboutSection/index.stories.ts b/src/components/AboutSection/index.stories.ts deleted file mode 100644 index d35f8a4a..00000000 --- a/src/components/AboutSection/index.stories.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Meta, StoryObj } from '@storybook/react'; -import AboutSection from '.'; - -const meta = { - title: 'AboutSection', - component: AboutSection, - args: { - description: - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.', - }, - tags: ['autodocs'], -} satisfies Meta; - -export default meta; -type Story = StoryObj; - -export const Default: Story = {}; diff --git a/src/components/AboutSection/index.tsx b/src/components/AboutSection/index.tsx deleted file mode 100644 index fa7495a7..00000000 --- a/src/components/AboutSection/index.tsx +++ /dev/null @@ -1,28 +0,0 @@ -interface AboutProps { - description?: string; -} - -const AboutSection: React.FC = ({ description }) => ( -
-
-

¿Quiénes somos?

-

- {description} -

-
- -
-