this repo has no description
1{{ define "title" }}privacy policy{{ end }}
2
3{{ define "content" }}
4<div class="grid grid-cols-10">
5 <header class="col-span-full md:col-span-10 px-6 py-2 mb-4">
6 <h1 class="text-2xl font-bold dark:text-white mb-1">Privacy Policy</h1>
7 <p class="text-gray-600 dark:text-gray-400 mb-1">
8 Learn how we collect, use, and protect your personal information.
9 </p>
10 </header>
11
12 <main class="col-span-full md:col-span-10 bg-white dark:bg-gray-800 drop-shadow-sm rounded p-6 md:px-10">
13 <div class="prose prose-gray dark:prose-invert max-w-none">
14 {{ .Content }}
15 </div>
16 </main>
17</div>
18{{ end }}