Shop Layout 1
💡
Folder location:
src/components/layouts/shop-layout-1
Examples
Many different ShopLayout1
usage in this templates
import ShopLayout1 from 'components/layouts/shop-layout-1'
import api from 'utils/__api__/layout'
export default async function Layout({ children }) {
const data = await api.getLayoutData()
return <ShopLayout1 data={data}>{children}</ShopLayout1>
}
Inside Components
- Topbar (opens in a new tab)
- Header (opens in a new tab)
- Navbar (opens in a new tab)
- Footer (opens in a new tab)
- MobileNavigationBar (opens in a new tab)
Used
- Market-1 (opens in a new tab)
- Market-2 (opens in a new tab)
- Grocery-3 (opens in a new tab)
- Fashion-1 (opens in a new tab)
- Fashion-2 (opens in a new tab)
Props
Name | Type | Required | Default |
---|---|---|---|
data | Object | Yes | - |
children | ReactNode | Yes | - |