Biome upgrades, theme upgrades, lots of daisy changes

This commit is contained in:
2025-07-05 12:29:48 +01:00
parent 95f317fd75
commit 89875a9341
29 changed files with 746 additions and 584 deletions

View File

@@ -2,6 +2,8 @@ import type React from "react";
export default function Post({
children,
}: { children: React.JSX.Element }): React.JSX.Element {
}: {
children: React.JSX.Element;
}): React.JSX.Element {
return <>{children}</>;
}