home page started

This commit was merged in pull request #2.
This commit is contained in:
victorAnumudu
2024-12-05 11:57:05 +01:00
parent 52bae60a24
commit d5a0430b42
10 changed files with 278 additions and 7 deletions
+7
View File
@@ -0,0 +1,7 @@
import React, { Children } from 'react'
export default function CardContainer({children}) {
return (
<div className='w-full h-full py-4 flex flex-col gap-1 rounded-sm shadow-shadow_round bg-white'>{children}</div>
)
}