1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-20 06:25:53 +02:00
.profile/components/Skills/SkillsSection.tsx

28 lines
832 B
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
import { ShadowContainer } from 'components/design/ShadowContainer'
export interface SkillsSectionProps {
title: string
children: React.ReactNode
}
export const SkillsSection: React.FC<SkillsSectionProps> = (props) => {
2021-04-18 01:56:23 +02:00
const { title, children } = props
return (
<ShadowContainer>
2021-12-04 15:52:51 +01:00
<div className='mx-auto w-full px-4'>
<div className='flex flex-wrap px-4 py-6'>
<div className='flex-1'>
2021-12-04 15:52:51 +01:00
<div className='mb-8 border-b border-gray-600 dark:border-white dark:border-opacity-10'>
<h3 className='my-3 text-xl font-semibold text-yellow dark:text-yellow-dark'>
{title}
</h3>
2021-04-18 01:56:23 +02:00
</div>
2021-12-04 15:52:51 +01:00
<div className='flex flex-wrap justify-around'>{children}</div>
2021-04-18 01:56:23 +02:00
</div>
</div>
</div>
</ShadowContainer>
2021-04-18 01:56:23 +02:00
)
}