Skip to content

Commit c3583a2

Browse files
committed
privacy
1 parent ecea40d commit c3583a2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

apps/moist/app/privacy/page.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
</div>
17+
<BottomMenu />
18+
</div>
19+
)
20+
}

0 commit comments

Comments
 (0)