diff options
| author | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2024-03-01 09:20:11 +0700 |
|---|---|---|
| committer | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2024-03-01 09:20:11 +0700 |
| commit | 65377952fbd0721ce1550c42384d723ccd7b9b1a (patch) | |
| tree | bd3d0e7546ec89a1c1c8e0c1889240a92d1e01c3 /src/pages/my/recomendation/index.jsx | |
| parent | 756f93807a33bb1398931ae894b071504dfec3b8 (diff) | |
generate recomendation
Diffstat (limited to 'src/pages/my/recomendation/index.jsx')
| -rw-r--r-- | src/pages/my/recomendation/index.jsx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/pages/my/recomendation/index.jsx b/src/pages/my/recomendation/index.jsx new file mode 100644 index 00000000..684b30c2 --- /dev/null +++ b/src/pages/my/recomendation/index.jsx @@ -0,0 +1,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> + ); +} |
