diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-05-10 15:11:55 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-05-10 15:11:55 +0700 |
| commit | b027c12d678698a9b8adcf4508a6160321c8172a (patch) | |
| tree | 6eb264d8404928fd20c802d1b562acce15c76afb /src/pages | |
| parent | 07817bbdc1f1ae29c848e5dfdb3ac5b140f48cc4 (diff) | |
Feature rfq, social media url, widget whatsapp offset
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/my/request-for-quotation.jsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/pages/my/request-for-quotation.jsx b/src/pages/my/request-for-quotation.jsx new file mode 100644 index 00000000..40fda009 --- /dev/null +++ b/src/pages/my/request-for-quotation.jsx @@ -0,0 +1,15 @@ +import Seo from '@/core/components/Seo' +import BasicLayout from '@/core/components/layouts/BasicLayout' +import FormRequestForQuotation from '@/lib/form/components/RequestForQuotation' + +export default function RequestForQuotation() { + return ( + <> + <Seo title='Request for Quotation - Indoteknik.com' /> + + <BasicLayout> + <FormRequestForQuotation /> + </BasicLayout> + </> + ) +} |
