Skip to content

Commit

Permalink
Merge pull request #25 from fumeapp/main
Browse files Browse the repository at this point in the history
🏷️
  • Loading branch information
acidjazz authored Sep 3, 2024
2 parents a238710 + 7a90fab commit 5677afb
Show file tree
Hide file tree
Showing 4 changed files with 182 additions and 0 deletions.
30 changes: 30 additions & 0 deletions app/pages/privacy.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<script setup lang="ts">
const { data: page } = await useAsyncData('privacy', () => queryContent('/privacy').findOne())
if (!page.value)
throw createError({ statusCode: 404, statusMessage: 'Page not found', fatal: true })
useSeoMeta({
titleTemplate: '',
title: page.value.title,
ogTitle: page.value.title,
description: page.value.description,
ogDescription: page.value.description,
})
console.log(page)
</script>

<template>
<div>
<u-page v-if="page">
<UPageBody prose>
<ContentRenderer
v-if="page.body"
:value="page"
/>
</UPageBody>
</u-page>
</div>
</template>

<style scoped></style>
30 changes: 30 additions & 0 deletions app/pages/terms.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<script setup lang="ts">
const { data: page } = await useAsyncData('terms', () => queryContent('/terms').findOne())
if (!page.value)
throw createError({ statusCode: 404, statusMessage: 'Page not found', fatal: true })
useSeoMeta({
titleTemplate: '',
title: page.value.title,
ogTitle: page.value.title,
description: page.value.description,
ogDescription: page.value.description,
})
console.log(page)
</script>

<template>
<div>
<u-page v-if="page">
<UPageBody prose>
<ContentRenderer
v-if="page.body"
:value="page"
/>
</UPageBody>
</u-page>
</div>
</template>

<style scoped></style>
59 changes: 59 additions & 0 deletions content/privacy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
title: Privacy | fume.bio
description: fume.bio privacy policy
---

# Privacy Policy

## Information Collection

fume.bio collects information about the use of our website to provide a secure and personalized experience. This includes:

- Customer's name
- Email
- Purchasing records
- Shopping patterns

We will collect information when you place an order with us.

## Information Usage

We do not sell, rent, or loan your information to third parties without your permission. For example, we do not sell your email address or other information to mass marketers.

fume.bio will be allowed to contact you with special offers and information related to fume.bio and all products you have bought or shopped for.

## Data Protection

At fume.bio, we guarantee that:

- We do not collect or store any information about you or your computer beyond what is required for your order to be placed.
- Personal details such as your name, address, or purchase history are not viewable by anyone other than yourself.
- All transactions on this site are SSL encrypted for your protection.

## Website Usage

Our collection and/or use of any information you provide while using or visiting this Web Site is governed by the fume.bio Privacy Policy and this Terms and Conditions of Use Agreement. By using this Web Site, you grant us the rights contained therein.

In using this Web Site, you may not upload, distribute, or otherwise publish any information which may be viewed as:

- Obscene
- Defamatory
- Libelous
- Threatening
- Abusive
- Illegal
- An invasion of privacy rights
- Otherwise objectionable
- May constitute or encourage a violation of any law

## User-Generated Content

Except for individually-identifiable information collected from you in accordance with our Privacy Policy, all comments, remarks, suggestions, ideas, or other information communicated will become the exclusive property of fume.bio. You grant to fume.bio a royalty-free, perpetual, irrevocable, world-wide, non-exclusive license to use or reproduce the same.

fume.bio is free to copy, disclose, distribute, or analyze any such information for any and all purposes and is in no way obligated to compensate you for any such information.

## Contact Information

If you require any more information or have any questions about our privacy policy, please feel free to contact us by email at fume.bio.

At fume.bio, the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information received and collected by fume.bio and how it is used.
Loading

0 comments on commit 5677afb

Please sign in to comment.