feat: add main skill struct

This commit is contained in:
Joel
2026-01-14 16:27:54 +08:00
parent 1a8fd08563
commit ab531d946e
14 changed files with 232 additions and 33 deletions

View File

@ -0,0 +1,17 @@
import type { FC, PropsWithChildren } from 'react'
import * as React from 'react'
type SkillPageLayoutProps = PropsWithChildren
const SkillPageLayout: FC<SkillPageLayoutProps> = ({ children }) => {
return (
<div
className="flex h-full gap-3"
data-component="skill-page-layout"
>
{children}
</div>
)
}
export default React.memo(SkillPageLayout)