Initial commit
This commit is contained in:
35
resources/js/pages/legal-help/privacy-policy.vue
Normal file
35
resources/js/pages/legal-help/privacy-policy.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="mt-6 flex flex-col">
|
||||
<div class="w-full md:max-w-3xl md:mx-auto px-4 md:pt-16">
|
||||
<h1 class="sm:text-5xl">
|
||||
Privacy Policy
|
||||
</h1>
|
||||
<notion-page page-id="9c97349ceda7455aab9b341d1ff70f79" />
|
||||
</div>
|
||||
</div>
|
||||
<open-form-footer />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NotionPage from '../../components/open/NotionPage'
|
||||
import OpenFormFooter from '../../components/pages/OpenFormFooter'
|
||||
|
||||
export default {
|
||||
components: { OpenFormFooter, NotionPage },
|
||||
layout: 'default',
|
||||
|
||||
metaInfo () {
|
||||
return { title: 'Privacy Policy' }
|
||||
},
|
||||
|
||||
data: () => ({
|
||||
}),
|
||||
|
||||
computed: {},
|
||||
|
||||
mounted () {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
35
resources/js/pages/legal-help/terms-conditions.vue
Normal file
35
resources/js/pages/legal-help/terms-conditions.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="mt-6 flex flex-col">
|
||||
<div class="w-full md:max-w-3xl md:mx-auto px-4 md:pt-16">
|
||||
<h1 class="sm:text-5xl">
|
||||
Terms & Conditions
|
||||
</h1>
|
||||
<notion-page page-id="246420da2834480ca04047b0c5a00929" />
|
||||
</div>
|
||||
</div>
|
||||
<open-form-footer />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NotionPage from '../../components/open/NotionPage'
|
||||
import OpenFormFooter from '../../components/pages/OpenFormFooter'
|
||||
|
||||
export default {
|
||||
components: { OpenFormFooter, NotionPage },
|
||||
layout: 'default',
|
||||
|
||||
metaInfo () {
|
||||
return { title: 'Terms & Conditions' }
|
||||
},
|
||||
|
||||
data: () => ({
|
||||
}),
|
||||
|
||||
computed: {},
|
||||
|
||||
mounted () {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user