- Notifications
You must be signed in to change notification settings - Fork1k
feat: implement Premium features page using shadcn/ui and Tailwind#15094
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
459a028
169c4f5
24c97dc
4134d90
15eded8
9dba1c8
579ced7
ae3bd9d
f977408
71826a8
093d947
58fbeb3
4e6daaf
287a67a
1310637
281ec8a
25cbb87
42e82b6
4ae065d
fd045a6
e015d20
3eba3af
162ad19
fcb4c2a
962045c
09c5844
ef4b261
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -47,10 +47,11 @@ | ||
"playwright.reuseBrowser": true, | ||
"[javascript][javascriptreact][json][jsonc][typescript][typescriptreact]": { | ||
"editor.defaultFormatter": "biomejs.biome", | ||
"editor.codeActionsOnSave": { | ||
"quickfix.biome": "explicit" | ||
// "source.organizeImports.biome": "explicit" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Nit: should we just remove it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. @aslilac Were you keeping this around for some reason? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I was hoping to re-enable it after Biome pushed a couple more bug fix releases. Enabling this would mean that it'd sort imports on file save (and avoid annoying CI failures) but someone (I think Asher?) encountered a really nasty bug with it. It's been a few months though, so maybe we should enable it! | ||
} | ||
}, | ||
"[css][html][markdown][yaml]": { | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"$schema": "https://ui.shadcn.com/schema.json", | ||
"style": "new-york", | ||
"rsc": false, | ||
"tsx": true, | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "src/index.css", | ||
"baseColor": "zinc", | ||
"cssVariables": true, | ||
"prefix": "" | ||
}, | ||
"aliases": { | ||
"components": "/components", | ||
"utils": "/utils", | ||
"ui": "/components/ui", | ||
"lib": "/lib", | ||
"hooks": "/hooks" | ||
} | ||
} |
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.