Add page title to Privacy Policy
This commit is contained in:
parent
34ceb6f5b4
commit
1619c8f7bf
1 changed files with 4 additions and 0 deletions
|
@ -4,12 +4,16 @@ import { VStack } from "@chakra-ui/react";
|
|||
|
||||
import { Heading1, Heading2, Heading3 } from "./util";
|
||||
import { useAuthModeFeatureFlag } from "./components/useCurrentUser";
|
||||
import Head from "next/head";
|
||||
|
||||
function PrivacyPolicyPage() {
|
||||
const [authMode] = useAuthModeFeatureFlag();
|
||||
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Privacy Policy | Dress to Impress</title>
|
||||
</Head>
|
||||
<Heading1 marginBottom="4">Our privacy policy</Heading1>
|
||||
<VStack
|
||||
spacing="4"
|
||||
|
|
Loading…
Reference in a new issue