FamilyNido — a self-hosted PWA for a single household: shared calendar, chores, meals, school agenda, health records and a family wall. One instance per family, deployable with `docker compose` on any home server. Stack: .NET 10 (ASP.NET Core Minimal APIs) + EF Core 10 + PostgreSQL 16 on the backend, Angular 21 (standalone, signals, zoneless) + Tailwind CSS v4 on the frontend, SignalR for realtime, optional OIDC alongside local credentials, integration via a versioned `/api/v1/**` public API. See README.md for the module overview and how to deploy.
15 lines
683 B
XML
15 lines
683 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" role="img" aria-label="FamilyNido">
|
|
<!-- Rounded square in the brand terracotta. -->
|
|
<rect width="32" height="32" rx="7" ry="7" fill="#C96442"/>
|
|
<!-- Italic serif "F" in the warm cream that the rest of the app uses for
|
|
page backgrounds. The choice mirrors the editorial display headings
|
|
seen across FamilyNido (e.g. "El <em>muro</em>"). -->
|
|
<text x="16" y="23"
|
|
text-anchor="middle"
|
|
font-family="Georgia, 'Times New Roman', serif"
|
|
font-size="22"
|
|
font-style="italic"
|
|
font-weight="500"
|
|
fill="#FBF7F0">F</text>
|
|
</svg>
|