Skip to content

Commit 88f4490

Browse files
committed
Update packages
1 parent 240d12b commit 88f4490

9 files changed

+33
-53
lines changed

bun.lockb

-14.3 KB
Binary file not shown.

package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"autoprefixer": "10.4.20",
13-
"babel-plugin-react-compiler": "^19.0.0-beta-201e55d-20241215",
14-
"eslint": "9.17.0",
15-
"eslint-config-next": "15.1.2",
16-
"next": "15.1.2",
17-
"postcss": "8.4.49",
12+
"@tailwindcss/postcss": "^4.0.7",
13+
"babel-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
14+
"eslint": "9.20.1",
15+
"eslint-config-next": "15.1.7",
16+
"next": "15.1.7",
17+
"postcss": "8.5.2",
1818
"react": "19.0.0",
1919
"react-dom": "19.0.0",
20-
"tailwind-merge": "^2.5.5",
21-
"tailwindcss": "3.4.17",
22-
"typescript": "5.7.2"
20+
"tailwind-merge": "^3.0.1",
21+
"tailwindcss": "^4.0.7",
22+
"typescript": "5.7.3"
2323
},
2424
"devDependencies": {
25-
"@types/node": "^22.10.2",
26-
"@types/react": "19.0.2",
27-
"@types/react-dom": "19.0.2",
28-
"prettier": "^3.4.2"
25+
"@types/node": "^22.13.4",
26+
"@types/react": "19.0.10",
27+
"@types/react-dom": "19.0.4",
28+
"prettier": "^3.5.1"
2929
}
3030
}

postcss.config.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module.exports = {
22
plugins: {
3-
tailwindcss: {},
4-
autoprefixer: {},
3+
'@tailwindcss/postcss': {},
54
},
65
}

src/app/globals.css

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import 'tailwindcss';
2+
3+
@theme {
4+
--color-primary-50: #6993a5;
5+
--color-primary-100: #618ca0;
6+
--color-primary-200: #577c91;
7+
--color-primary-300: #4d6c81;
8+
--color-primary-400: #445c71;
9+
--color-primary-500: #3a4d61;
10+
--color-primary-600: #303f51;
11+
--color-primary-700: #273241;
12+
--color-primary-800: #1d2531;
13+
--color-primary-900: #141821;
14+
--color-primary-950: #0f1219;
15+
}
416

517
:root {
618
color-scheme: only dark;

src/components/Lanyard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const Lanyard: FC = () => {
9393
className={twMerge(
9494
'text-green-400 font-semibold',
9595
jellyfin &&
96-
'text-transparent bg-clip-text inline-block bg-gradient-to-br from-purple-500 to-sky-500 drop-shadow-md',
96+
'text-transparent bg-clip-text inline-block bg-linear-to-br from-purple-500 to-sky-500 drop-shadow-md',
9797
)}
9898
>
9999
I'm currently {doing.spotify ? 'listening to' : `watching`}

src/components/about.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const AboutMe: FC = () => (
5050
<div className="flex gap-4">
5151
<div className="sm:flex items-center hidden">
5252
<img
53-
className="object-cover object-center w-44 h-44 rounded-md shadow min-w-32"
53+
className="object-cover object-center w-44 h-44 rounded-md shadow-sm min-w-32"
5454
width={176}
5555
height={176}
5656
src="https://t.pics/me.webp"

src/components/footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { FC } from 'react';
22

33
const Footer: FC = () => (
44
<footer className="bg-primary-800 text-gray-500 px-3 my-2 flex">
5-
<div className="flex-shrink px-2 flex gap-4">
5+
<div className="shrink px-2 flex gap-4">
66
<a
77
href="https://github.com/timcole/timcole.me"
88
target="_blank"

src/components/positions.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const Positions: FC = () => {
100100
</span>
101101
<span className="mt-1 text-primary-400">{date}</span>
102102
</div>
103-
<div className="text-gray-300 md:flex-grow flex-col gap-3 flex">
103+
<div className="text-gray-300 md:grow flex-col gap-3 flex">
104104
{description}
105105
</div>
106106
</div>

tailwind.config.ts

-31
This file was deleted.

0 commit comments

Comments
 (0)