diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2024-12-23 07:15:02 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2024-12-23 07:15:02 +0000 |
| commit | d76f96c44f85e7e0efbd544e6b97bd80920b0039 (patch) | |
| tree | 26b909e9b49d115ed2a174bbc55941e68471fae6 /src/pages/request-for-quotation.jsx | |
| parent | 9962d114e590bfc5e6c865489ab4dcd84de81ad9 (diff) | |
| parent | 141e9113c7dc4483ab049137b4e4ac731657cfb0 (diff) | |
Merged in CR/move-formulir (pull request #396)
CR/move formulir
Diffstat (limited to 'src/pages/request-for-quotation.jsx')
| -rw-r--r-- | src/pages/request-for-quotation.jsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/pages/request-for-quotation.jsx b/src/pages/request-for-quotation.jsx new file mode 100644 index 00000000..40fda009 --- /dev/null +++ b/src/pages/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> + </> + ) +} |
