site construction notes

jan 5, 2026 // #meta
    +-----------------------+
    |   design language     |
    +-----------------------+
    

this site follows "the archive" design language — brutalist minimalism with a tactile, paper-like feel.

the philosophy:

the palette:

    token      value                      usage
    ─────────────────────────────────────────────────
    paper      #f1e9d2                    page background
    card       rgba(255,255,255,0.4)      card background
    card hover #ffffff                    card on hover
    ink        #333333                    text, borders, shadows
    muted      #555555                    secondary text
    link       #0044cc                    hyperlinks
    

the components:

the rules:

card hover effect:

    .card:hover {
        background: #ffffff;
        box-shadow: 5px 5px 0px #333;
        transform: translate(-1px, -1px);
        transition: all 0.1s;
    }
    
       \  :  /
     '.   :   .'
       > art <
     '.   :   '.
       /  :  \
    

the tech:

file structure:

    zayd.wtf/
    ├── src/
    │   ├── pages/**/*.astro
    │   ├── layouts/SiteLayout.astro
    │   ├── components/*.astro
    │   └── lib/site.mjs
    ├── public/
    │   ├── assets/css/styles.css
    │   ├── assets/js/scripts.js
    │   ├── assets/js/effects.js
    │   ├── manifest.json, sw.js
    │   ├── sitemap.xml, robots.txt
    │   ├── llms.txt, CNAME
    │   └── favicon.ico
    ├── dist/          (build output)
    ├── tools/
    └── _docs/         (not served)