Attic is a cozy space with lofty ambitions. attic.social

footer links

dbushell.com 7bc7a625 55f441db

verified
+75 -1
+16
src/css/base/fonts.css
··· 13 13 } 14 14 15 15 @font-face { 16 + font-family: "Quantico"; 17 + src: url("/fonts/Quantico-BoldItalic.woff2") format("woff2"); 18 + font-display: swap; 19 + font-style: italic; 20 + font-weight: 400; 21 + } 22 + 23 + @font-face { 24 + font-family: "Quantico"; 25 + src: url("/fonts/Quantico-Italic.woff2") format("woff2"); 26 + font-display: swap; 27 + font-style: italic; 28 + font-weight: 400; 29 + } 30 + 31 + @font-face { 16 32 font-family: "Silkscreen"; 17 33 src: url("/fonts/Silkscreen-Regular.woff2") format("woff2"); 18 34 font-display: block;
+6
src/css/base/global.css
··· 60 60 & a { 61 61 color: currentColor; 62 62 } 63 + 64 + & p small { 65 + column-gap: 10px; 66 + display: flex; 67 + flex-wrap: wrap; 68 + } 63 69 } 64 70 65 71 & > main {
+8
src/css/base/typography.css
··· 29 29 color: rgb(var(--color-light-yellow)); 30 30 } 31 31 } 32 + 33 + :is(b, strong) { 34 + font-weight: 700; 35 + } 36 + 37 + :is(i, em) { 38 + font-style: italic; 39 + }
+9 -1
src/routes/+layout.svelte
··· 20 20 <footer> 21 21 <p> 22 22 <small> 23 - &copy; Copyright 2026 23 + &copy; Copyright {new Date().getFullYear()} 24 24 <a href="https://dbushell.com" rel="noopener noreferrer" target="_blank" 25 25 >David Bushell</a 26 + > 27 + <span aria-hidden="true">&bull;</span> 28 + <a href="/privacy">privacy</a> 29 + <span aria-hidden="true">&bull;</span> 30 + <a 31 + href="https://tangled.org/dbushell.com/attic.social/" 32 + rel="noopener noreferrer" 33 + target="_blank">source</a 26 34 > 27 35 </small> 28 36 </p>
+36
src/routes/privacy/+page.svelte
··· 1 + <h1>Privacy policy</h1> 2 + <p><strong>Last updated:</strong> 2026-03-08</p> 3 + 4 + <p>This policy explains how Attic respects your privacy and security.</p> 5 + 6 + <h2>Personal data</h2> 7 + 8 + <p> 9 + Attic does not store your personal data. If you sign in and use Attic, data is 10 + stored on your chosen Personal Data Server (PDS). Attic uses AT Protocol 11 + services on your behalf to manage data on your PDS. Data submitted to and 12 + retrieved from your PDS is publicly visible. Please refer to the <em 13 + >Terms of Service</em 14 + > 15 + and <em>Privacy Policy</em> of your PDS before using Attic. 16 + </p> 17 + 18 + <h2>Cookies</h2> 19 + 20 + <p> 21 + No cookies are used unless you sign in. Attic uses only essential functional 22 + cookies to manage OAuth authorization and signed in user sessions. No 23 + 3rd-party cookies are used. No cookies are used for analytics or tracking. 24 + </p> 25 + 26 + <h2>Policy changes</h2> 27 + 28 + <p> 29 + Changes to the Attic privacy policy will be published at the following URL: 30 + </p> 31 + 32 + <p> 33 + <code>https://attic.social/privacy</code> 34 + </p> 35 + 36 + <p>The page has a "Last updated" date at the top.</p>