summaryrefslogtreecommitdiff
path: root/src/pages/shop/quotation/index.jsx
blob: bd086b72e48d936a59dc2967a9e2cdf91ad61567 (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
27
28
29
import Seo from '@/core/components/Seo'
import AppLayout from '@/core/components/layouts/AppLayout'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import DesktopView from '@/core/components/views/DesktopView'
import MobileView from '@/core/components/views/MobileView'
import IsAuth from '@/lib/auth/components/IsAuth'
import QuotationComponent from '@/lib/quotation/components/Quotation'

export default function Quotation() {
  return (
    <>
      <Seo title='Quotation Indoteknik.com' />

      <IsAuth>
        <MobileView>
          <AppLayout title='Quotation'>
            <QuotationComponent />
          </AppLayout>
        </MobileView>

        <DesktopView>
          <BasicLayout>
            <QuotationComponent />
          </BasicLayout>
        </DesktopView>
      </IsAuth>
    </>
  )
}