Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
Expand Down
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tailwindCSS.experimental.classRegex": [
["([\"'`][^\"'`]*.*?[\"'`])", "[\"'`]([^\"'`]*).*?[\"'`]"]
],
}
35 changes: 18 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,29 @@
"preview": "vite preview"
},
"dependencies": {
"@heroui/button": "2.2.22",
"@heroui/code": "2.2.16",
"@heroui/dropdown": "2.3.22",
"@heroui/input": "2.4.22",
"@heroui/kbd": "2.2.17",
"@heroui/link": "2.2.19",
"@heroui/navbar": "2.2.20",
"@heroui/snippet": "2.2.23",
"@heroui/switch": "2.2.20",
"@heroui/system": "2.4.18",
"@heroui/theme": "2.4.17",
"@heroui/use-theme": "2.1.9",
"@heroui/button": "2.2.23",
"@heroui/code": "2.2.17",
"@heroui/dropdown": "2.3.23",
"@heroui/input": "2.4.23",
"@heroui/kbd": "2.2.18",
"@heroui/link": "2.2.20",
"@heroui/navbar": "2.2.21",
"@heroui/snippet": "2.2.24",
"@heroui/switch": "2.2.21",
"@heroui/system": "2.4.19",
"@heroui/theme": "2.4.18",
"@heroui/use-theme": "2.1.10",
"@react-aria/visually-hidden": "3.8.25",
"@react-types/shared": "3.30.0",
"@tailwindcss/postcss": "4.1.11",
"@tailwindcss/vite": "4.1.11",
"clsx": "2.1.1",
"framer-motion": "11.15.0",
"framer-motion": "11.18.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.23.0",
"tailwind-variants": "0.3.0",
"tailwindcss": "3.4.16"
"tailwind-variants": "1.0.0",
"tailwindcss": "4.1.11"
},
"devDependencies": {
"@eslint/compat": "1.2.8",
Expand All @@ -42,7 +44,6 @@
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"@vitejs/plugin-react": "4.4.1",
"autoprefixer": "10.4.21",
"eslint": "9.25.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
Expand All @@ -53,7 +54,7 @@
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "16.0.0",
"postcss": "8.5.3",
"postcss": "8.5.6",
"prettier": "3.5.3",
"typescript": "5.6.3",
"vite": "5.2.0",
Expand Down
9 changes: 4 additions & 5 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
plugins: {
"@tailwindcss/postcss": {},
},
};
2 changes: 1 addition & 1 deletion src/components/primitives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const title = tv({
},
size: {
sm: "text-3xl lg:text-4xl",
md: "text-[2.3rem] lg:text-5xl leading-9",
md: "text-[2.3rem] lg:text-5xl",
lg: "text-4xl lg:text-6xl",
},
fullWidth: {
Expand Down
6 changes: 3 additions & 3 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";

@config "../../tailwind.config.js"
3 changes: 2 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tsconfigPaths from "vite-tsconfig-paths";
import tailwindcss from "@tailwindcss/vite";

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), tsconfigPaths()],
plugins: [react(), tsconfigPaths(), tailwindcss()],
});