{"id":50895241,"url":"https://github.com/mandrasch/karenz-wizard","last_synced_at":"2026-06-15T23:31:34.912Z","repository":{"id":318236549,"uuid":"1034261174","full_name":"mandrasch/karenz-wizard","owner":"mandrasch","description":"Planer für Elternkarenz und einkommensabhängiges Kinderbetreuungsgeld. Proof of concept, um zu zeigen dass ein Online-Tool easy möglich wäre für schmerzfreiere Karenzplanung in Österreich!","archived":false,"fork":false,"pushed_at":"2026-05-23T13:50:19.000Z","size":21029,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-23T14:21:25.272Z","etag":null,"topics":["svelte","sveltekit","techforgood"],"latest_commit_sha":null,"homepage":"https://karenz-wizard.at","language":"Astro","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mandrasch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-08-08T05:37:52.000Z","updated_at":"2026-05-16T10:42:53.000Z","dependencies_parsed_at":"2025-10-06T01:18:34.794Z","dependency_job_id":"f848f9ca-1792-4344-94aa-fd2dd3f3ca0e","html_url":"https://github.com/mandrasch/karenz-wizard","commit_stats":null,"previous_names":["mandrasch/karenz-wizard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mandrasch/karenz-wizard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandrasch%2Fkarenz-wizard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandrasch%2Fkarenz-wizard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandrasch%2Fkarenz-wizard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandrasch%2Fkarenz-wizard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mandrasch","download_url":"https://codeload.github.com/mandrasch/karenz-wizard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandrasch%2Fkarenz-wizard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34385031,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["svelte","sveltekit","techforgood"],"created_at":"2026-06-15T23:31:34.798Z","updated_at":"2026-06-15T23:31:34.900Z","avatar_url":"https://github.com/mandrasch.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Karenz Wizard 🪄\n\nPlanning tool for parental leave in Austria.\n\n![](public/hero_karenz_wizard.jpg)\n\nQuick proof of concept with some help by [ChatGPT Codex (VSCode)](https://marketplace.visualstudio.com/items?itemName=openai.chatgpt), regular ChatGPT 5 and [Antigravity](https://antigravity.google/), done in my leisure time. Needs improvements in regards to accessibility \u0026 diversity.\n\nhttps://karenz-wizard.at\n\n## Stack\n\n- [Astro 5](https://astro.build) (static build, `output: 'static'`, trailing-slash `'always'`)\n- [AstroWind](https://github.com/onwidget/astrowind) template + vendor integration\n- [Tailwind CSS v3](https://v3.tailwindcss.com) via `@astrojs/tailwind`\n- [Svelte 5](https://svelte.dev) for the `eakbg-planer` island and two smaller calculators, mounted via `@astrojs/svelte` with `client:load`\n- Astro Content Collections for the blog at `src/content/blog/*.md`\n- [@fontsource-variable/inter](https://fontsource.org/fonts/inter) for typography\n- [umami.is](https://umami.is) for privacy-friendly analytics\n- Apache `.htaccess` for static hosting cache headers (see `public/.htaccess`)\n\n## Developing\n\nInstall dependencies, then start the dev server:\n\n```sh\nnpm install\nnpm run dev\n```\n\nAstro picks an open port; it usually lands at `http://localhost:4321/` (or 4322/4323 if the previous is in use).\n\n\u003e Note: changes to `astro.config.ts` or `src/config.yaml` require a dev-server restart — Astro reads config once at startup, not on file change.\n\n## Building\n\n```sh\nnpm run build     # emits to dist/\nnpm run preview   # serves dist/ locally\n```\n\nUpload `dist/` to any static host. The included `public/.htaccess` sets cache headers for Apache hosts.\n\n## Type-checking\n\n```sh\nnpm run check  # astro check — must be 0 errors / 0 warnings before committing\n```\n\n## Project layout\n\n```\nsrc/\n  pages/          Astro pages (one file per route)\n  layouts/        Layout.astro — root \u003chtml\u003e/\u003chead\u003e/\u003cbody\u003e shell\n  components/\n    widgets/      HeaderKW.astro, FooterKW.astro\n    blog/         PostCard.astro, PostGrid.astro\n    common/       CommonMeta, SiteVerification\n  lib/            Preserved Svelte 5 components (islands)\n  content/blog/   Markdown blog posts\n  assets/styles/  tailwind.css + kw.css (layout tokens)\n  utils/          seo.ts, teaser.ts, permalinks.ts\n  content.config.ts   Astro Content Collection schema\npublic/           Static assets served at the site root\nvendor/           AstroWind vendor integration\n```\n\nSee `AGENTS.md` for editing conventions (accessibility contract, layout rules, Tailwind v3 notes).\nSee `ASTROWIND_MIGRATION_PLAN.md` for the full SvelteKit → Astro migration history.\n\n## License\n\nOpen Source / MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmandrasch%2Fkarenz-wizard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmandrasch%2Fkarenz-wizard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmandrasch%2Fkarenz-wizard/lists"}