16 lines
409 B
JavaScript
16 lines
409 B
JavaScript
import React from 'react'
|
|
import Hero from '@/components/Hero'
|
|
import StuffDetail from '@/components/management/StuffDetail'
|
|
export default function ManagementStuffDetailPage() {
|
|
return (
|
|
<>
|
|
<div className="pt-48 flex justify-left">
|
|
<h1 className="text-4xl archivo-black-regular">물건정보</h1>
|
|
</div>
|
|
<div className="m2">
|
|
<StuffDetail />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|