blob: 8159c96527eb9f5ca3d8668b21994e8b26e4e4ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import DesktopView from '@/core/components/views/DesktopView'
import MobileView from '@/core/components/views/MobileView'
import BrandsComponent from '@/lib/brand/components/Brands'
export default function Brands() {
return (
<BasicLayout>
<Seo title='Brands Indoteknik.com' />
<MobileView>
<BrandsComponent />
</MobileView>
<DesktopView>
<div className='container mx-auto mt-10 flex mb-3'>
<BrandsComponent />
</div>
</DesktopView>
</BasicLayout>
)
}
|