View Repo
diff --git a/components/widgets/LastPlayed.tsx b/components/widgets/LastPlayed.tsx
index 0ad3d55..e92bb45 100644
--- a/components/widgets/LastPlayed.tsx
+++ b/components/widgets/LastPlayed.tsx
@@ -40,7 +40,7 @@ const LastPlayed: React.FC = () => {
return (
Last Played Song
-
+
img.size === 'large')?.['#text'] || '/placeholder.png'}
alt={track.name}
diff --git a/components/widgets/Music.tsx b/components/widgets/Music.tsx
index 3e74a8e..047ccd2 100644
--- a/components/widgets/Music.tsx
+++ b/components/widgets/Music.tsx
@@ -59,7 +59,7 @@ export default function Home() {
id="timePeriod"
value={timePeriod}
onChange={(e) => setTimePeriod(e.target.value)}
- className="ml-2 p-2 bg-gray-700 text-gray-300 rounded"
+ className="ml-2 p-2 bg-gray-700 text-gray-300 rounded-sm"
>
diff --git a/package.json b/package.json
index d604cb5..bc37682 100644
--- a/package.json
+++ b/package.json
@@ -15,19 +15,20 @@
"@fortawesome/react-fontawesome": "^0.2.2",
"geist": "^1.3.1",
"lucide-react": "^0.469.0",
- "next": "15.1.3",
+ "next": "^15.2.0-canary.63",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
- "typescript": "^5.7.3",
+ "@eslint/eslintrc": "^3.2.0",
+ "@tailwindcss/postcss": "^4.0.0",
"@types/node": "^20.17.19",
- "@types/react": "^19.0.8",
- "@types/react-dom": "^19.0.3",
- "postcss": "^8.5.2",
- "tailwindcss": "^3.4.17",
+ "@types/react": "^19.0.10",
+ "@types/react-dom": "^19.0.4",
"eslint": "^9.20.1",
"eslint-config-next": "15.1.3",
- "@eslint/eslintrc": "^3.2.0"
+ "postcss": "^8.5.2",
+ "tailwindcss": "^4.0.0",
+ "typescript": "^5.7.3"
}
}
diff --git a/postcss.config.mjs b/postcss.config.mjs
index 1a69fd2..5d6d845 100644
--- a/postcss.config.mjs
+++ b/postcss.config.mjs
@@ -1,7 +1,7 @@
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
- tailwindcss: {},
+ '@tailwindcss/postcss': {},
},
};
diff --git a/tailwind.config.ts b/tailwind.config.ts
deleted file mode 100644
index 1362b88..0000000
--- a/tailwind.config.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import type { Config } from "tailwindcss";
-
-export default {
- content: [
- "./pages/**/*.{js,ts,jsx,tsx,mdx}",
- "./components/**/*.{js,ts,jsx,tsx,mdx}",
- "./app/**/*.{js,ts,jsx,tsx,mdx}",
- ],
- theme: {
- extend: {
- colors: {
- background: "var(--background)",
- foreground: "var(--foreground)",
- },
- },
- },
- plugins: [],
-} satisfies Config;