13 lines
497 B
JavaScript
13 lines
497 B
JavaScript
function HeadPageList({ children, title, detail }) {
|
|
return (
|
|
<div className="bg-[#F6F7F9]">
|
|
<div className="padding-responsive pt-[195px] pb-[85px] flex flex-col items-center gap-[25px]">
|
|
<p className="text-[#3B3B3B] text-[24px] text-center font-bold">{title}</p>
|
|
<p className="text-[#3B3B3B] text-[16px] text-center font-normal">{detail}</p>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default HeadPageList |