mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
Created privacy.astro page in anticipation of privacy policy
This commit is contained in:
parent
18cbb8254e
commit
84cd9c26c9
1 changed files with 25 additions and 0 deletions
25
src/pages/privacy.astro
Normal file
25
src/pages/privacy.astro
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
import BaseLayout from "../layouts/base.astro";
|
||||||
|
import * as config from "../config.yaml";
|
||||||
|
import core from "../core.json";
|
||||||
|
import AboutFooter from "../components/AboutFooter.astro";
|
||||||
|
import AboutItemGrid from "../components/AboutItemGrid.astro";
|
||||||
|
import AboutWidget from "../components/AboutWidget.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<BaseLayout
|
||||||
|
title="Privacy Policy"
|
||||||
|
image="og_index"
|
||||||
|
subtext="Privacy Policy - Web3PrivacyNow"
|
||||||
|
>
|
||||||
|
<div class="middle-pane-medium mt-10">
|
||||||
|
<div class="grid grid-cols-1 xl:grid-cols-2 gap-16 mb-[82px]">
|
||||||
|
<div class="flex flex-col gap-[36px] md:order-2">
|
||||||
|
<div class="md:hidden block mb-[12px]">
|
||||||
|
<div><p>WORK IN PROGRESS</p></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<AboutFooter />
|
||||||
|
</div>
|
||||||
|
</BaseLayout>
|
Loading…
Reference in a new issue