mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 04:01:21 +00:00
19 lines
517 B
XML
19 lines
517 B
XML
|
|
import { ButtonCommon, Layout, ViewAllItem, ItemWishList, Logo } from 'src/components/common'
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<div>This is home page</div>
|
|
<ButtonCommon />
|
|
<ViewAllItem />
|
|
<ItemWishList />
|
|
<Logo />
|
|
<p>Go to <code>pages/index.tsx</code> to get your hand dirty!</p>
|
|
<p>Go to <code>src/components</code> to make your awesome component!</p>
|
|
<p>Go to <code>src/styles</code> to find global styles!</p>
|
|
</>
|
|
)
|
|
}
|
|
|
|
Home.Layout = Layout
|