my website, hosted on wisp.place

feat: privacy page

+15 -3
+2 -3
src/components/Footer.astro
··· 13 13 <footer style="text-align: center;"> 14 14 <nav> 15 15 <p> 16 + social • 16 17 <a href="mailto:devin@devins.page">email</a> • 17 18 <a href="https://matrix.to/#/@devin_real:matrix.org">matrix</a> • 18 19 <a href="https://github.com/intergrav">github</a> • ··· 24 25 ><a href={`https://github.com/intergrav/devins.page/commit/${commitHash}`} 25 26 >{commitHash}</a 26 27 ></code 27 - > made with <a href="https://astro.build">astro</a> and <a 28 - href="https://github.com/intergrav/slight.css">slight.css</a 29 - >. subscribe to <a href="/rss.xml">rss</a> 28 + > • <a href="/privacy">privacy</a> • <a href="/rss.xml">subscribe to rss</a> 30 29 </p> 31 30 </footer>
+13
src/pages/privacy.astro
··· 1 + --- 2 + import Layout from "../layouts/Layout.astro"; 3 + --- 4 + 5 + <Layout title="privacy" description="privacy information for devins.page"> 6 + <h1>privacy</h1> 7 + 8 + <p>this website is deployed on Cloudflare Pages, and uses Cloudflare Web Analytics to help me understand basic traffic information. as of 2025, Cloudflare <a href="https://www.cloudflare.com/web-analytics">claims</a> that they do not use any client-side state, such as cookies or localStorage, to collect usage metrics, and don't fingerprint individuals via IP address, User Agent string, or any other data.</p> 9 + 10 + <p>i do not personally collect, store, or share any visitor data other than what cloudflare provides.</p> 11 + 12 + <a href="/">← home</a> 13 + </Layout>