header & footer

This commit is contained in:
2024-01-16 10:24:21 +01:00
parent 92eacc2764
commit 226beb974f
13 changed files with 101 additions and 41 deletions

View File

@@ -1,7 +1,10 @@
import { Main } from "../ui/Main";
import { PageFooter } from "../ui/PageFooter";
import { PageHeader } from "../ui/PageHeader";
const ConsentPage = () =>
<main>
<article className="prose container mx-auto my-[4em]">
<Main>
<article className="prose container mx-auto px-6">
<h1>Application Privacy Policy for Home Utility Bills Tracking Web App</h1>
<h2>1. Introduction</h2>
<p>Welcome to our Home Utility Bills Tracking Web Application (App). This Privacy Policy is intended to inform you about how we collect, use, and disclose your personal information through the operation of the App.</p>
@@ -32,6 +35,6 @@ const ConsentPage = () =>
<h2>11. Consent</h2>
<p>By using our App, you consent to our privacy policy.</p>
</article>
</main>;
</Main>;
export default ConsentPage;