We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecea40d commit c3583a2Copy full SHA for c3583a2
apps/moist/app/privacy/page.tsx
@@ -0,0 +1,20 @@
1
+'use client'
2
+import { BottomMenu } from '@/components/BottomMenu'
3
+import { TopNavigation } from '@/components/TopNavigation'
4
+
5
+export default function Page() {
6
+ return (
7
+ <div className="h-full w-full">
8
+ <TopNavigation />
9
+ <div className="pb-8">
10
+ <div className="flex flex-wrap max-w-[800px] mx-auto">
11
+ The Moist Meter site and extension does not collect any data
12
+ about your browsing or personal data. All access to websites
13
+ are only used to insert the Moist Meter scores to the
14
+ respective movies.
15
+ </div>
16
17
+ <BottomMenu />
18
19
+ )
20
+}
0 commit comments