feat: new website

This commit is contained in:
Dan Finch 2026-05-13 02:03:11 +02:00
commit 9a2ff1ad03
64 changed files with 2905 additions and 0 deletions

24
oxfmt.config.ts Normal file
View file

@ -0,0 +1,24 @@
import { defineConfig } from "oxfmt"
export default defineConfig({
useTabs: false,
tabWidth: 2,
printWidth: 80,
singleQuote: false,
jsxSingleQuote: false,
quoteProps: "as-needed",
trailingComma: "all",
semi: false,
arrowParens: "always",
bracketSameLine: false,
bracketSpacing: true,
ignorePatterns: ["**/*.gen.ts"],
overrides: [
{
files: ["**/ui/**/*.ts"],
options: {
printWidth: 60,
},
},
],
})