feat: add weather widget
All checks were successful
renovate / renovate (push) Successful in 1m3s
test-build / build (push) Successful in 1m47s

This commit is contained in:
2026-02-10 21:42:04 -06:00
parent 63cbcdf39b
commit b6dfc738f1
15 changed files with 164 additions and 25 deletions

View File

@@ -23,6 +23,13 @@ export type Global = {
footer_image_alt: string;
};
export type Weather = {
id: string;
location: string;
latitude: string;
longitude: string;
}
export type Post = {
slug: string;
title: string;