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 SidebarProps = PropsWithChildren
const Sidebar: FC<SidebarProps> = ({ children }) => {
return (
<aside
className="flex w-[260px] shrink-0 flex-col gap-3 rounded-lg bg-white p-3"
data-component="sidebar"
>
{children}
</aside>
)
}
export default React.memo(Sidebar)