diff options
| author | trisusilo <tri.susilo@altama.co.id> | 2024-07-02 07:35:02 +0000 |
|---|---|---|
| committer | trisusilo <tri.susilo@altama.co.id> | 2024-07-02 07:35:02 +0000 |
| commit | f7b024585b70f1bd600ba5e0d26368c532ac9723 (patch) | |
| tree | fafea81669ea00f824260ecb4a0acc9e1096499f /src/pages/my/recomendation/index.jsx | |
| parent | 66d787499d0751365c1cda9d79b31e9f3c3c28bc (diff) | |
| parent | e8ad23dbad5e96dddcd6b10bdc46400c6721e80b (diff) | |
Merged in feature/generate_recomendation (pull request #148)
Feature/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> + ); +} |
