summaryrefslogtreecommitdiff
path: root/src/pages/my/recomendation/index.jsx
blob: 684b30c2015fde68e4c954fc4f8f1eee9e686497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import DesktopView from '@/core/components/views/DesktopView';
import MobileView from '@/core/components/views/MobileView';
import IsAuth from '../../../lib/auth/components/IsAuth';
import AppLayout from '@/core/components/layouts/AppLayout';
import BasicLayout from '@/core/components/layouts/BasicLayout';
import dynamic from 'next/dynamic';
import Seo from '@/core/components/Seo'

const ProductsRecomendation = dynamic(() => import('./components/products-recomendatison'))
export default function MyRecomendation() {
  return (
    <IsAuth>
      
      <Seo title='Dashboard Rekomendasi - Indoteknik.com' />

      <MobileView>
        <AppLayout></AppLayout>
      </MobileView>
      <DesktopView>
        <BasicLayout>
            <ProductsRecomendation />
        </BasicLayout>
      </DesktopView>
    </IsAuth>
  );
}