Introduce writing styles

This commit is contained in:
2025-06-06 16:04:38 +03:00
parent 4d889fe114
commit 6911cfaaa4
9 changed files with 94 additions and 51 deletions

View File

@@ -33,11 +33,13 @@ export const preferences = pgTable("preferences", {
enabled: boolean;
language: string;
units: "Imperial" | "Metric";
tone?: string[];
}>()
.$defaultFn(() => ({
enabled: true,
language: "English",
units: "Metric",
tone: [],
})),
});