footer things
This commit is contained in:
12
app/public-area/pages/privacy.tsx
Normal file
12
app/public-area/pages/privacy.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import type { BlitzPage } from "blitz";
|
||||
|
||||
import Layout from "../components/layout";
|
||||
|
||||
const PrivacyPolicy: BlitzPage = () => {
|
||||
return <article className="m-auto">Coming soon.</article>;
|
||||
};
|
||||
|
||||
PrivacyPolicy.getLayout = (page) => <Layout title="Privacy Policy">{page}</Layout>;
|
||||
PrivacyPolicy.suppressFirstRenderFlicker = true;
|
||||
|
||||
export default PrivacyPolicy;
|
12
app/public-area/pages/terms.tsx
Normal file
12
app/public-area/pages/terms.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import type { BlitzPage } from "blitz";
|
||||
|
||||
import Layout from "../components/layout";
|
||||
|
||||
const TermsOfService: BlitzPage = () => {
|
||||
return <article className="m-auto">Coming soon.</article>;
|
||||
};
|
||||
|
||||
TermsOfService.getLayout = (page) => <Layout title="Terms of Service">{page}</Layout>;
|
||||
TermsOfService.suppressFirstRenderFlicker = true;
|
||||
|
||||
export default TermsOfService;
|
Reference in New Issue
Block a user