Skip to content

Commit 2723e0a

Browse files
committed
Updated dependencies
1 parent 99908b9 commit 2723e0a

14 files changed

Lines changed: 2224 additions & 1269 deletions

File tree

package.json

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -23,41 +23,42 @@
2323
"@next/env": "^16.2.6",
2424
"@types/webpack": "^5.28.5",
2525
"@uidotdev/usehooks": "^2.4.1",
26-
"framer-motion": "^11.3.6",
27-
"next": "^15.5.18",
26+
"framer-motion": "^12.40.0",
27+
"next": "^16.2.6",
2828
"particles.js": "^2.0.0",
29-
"react": "^18.3.1",
30-
"react-dom": "^18.3.1",
29+
"react": "^19.2.6",
30+
"react-dom": "^19.2.6",
3131
"react-navigation-controller": "^3.1.1",
32-
"sharp": "^0.33.4",
33-
"use-sound": "^4.0.3",
34-
"webpack": "^5.93.0"
32+
"sharp": "^0.34.5",
33+
"use-sound": "^5.0.0",
34+
"webpack": "^5.107.2"
3535
},
3636
"devDependencies": {
37-
"@types/node": "^20.14.11",
38-
"@types/react": "^18.3.3",
39-
"@types/react-dom": "^18.3.0",
40-
"@typescript-eslint/eslint-plugin": "^8.59.4",
41-
"@typescript-eslint/parser": "^8.59.4",
37+
"@tailwindcss/postcss": "^4.3.0",
38+
"@types/node": "^25.9.1",
39+
"@types/react": "^19.2.15",
40+
"@types/react-dom": "^19.2.3",
41+
"@typescript-eslint/eslint-plugin": "^8.60.0",
42+
"@typescript-eslint/parser": "^8.60.0",
4243
"@webpack-cli/generators": "^3.0.7",
43-
"autoprefixer": "^10.4.19",
44-
"css-loader": "^7.1.2",
45-
"eslint": "^9.7.0",
44+
"autoprefixer": "^10.5.0",
45+
"css-loader": "^7.1.4",
46+
"eslint": "^10.4.1",
4647
"eslint-config-next": "16.2.6",
47-
"html-webpack-plugin": "^5.6.0",
48-
"mini-css-extract-plugin": "^2.9.0",
48+
"html-webpack-plugin": "^5.6.7",
49+
"mini-css-extract-plugin": "^2.10.2",
4950
"postcss": "^8.5.15",
50-
"postcss-loader": "^8.1.1",
51+
"postcss-loader": "^8.2.1",
5152
"prettier": "^3.8.3",
52-
"sass": "^1.77.8",
53+
"sass": "^1.100.0",
5354
"sass-loader": "^17.0.0",
5455
"style-loader": "^4.0.0",
5556
"tailwind-scrollbar": "^4.0.2",
56-
"tailwindcss": "^3.4.6",
57-
"ts-loader": "^9.5.1",
58-
"typescript": "^5.5.3",
59-
"webpack-cli": "^5.1.4",
60-
"webpack-dev-server": "^5.0.4"
57+
"tailwindcss": "^4.3.0",
58+
"ts-loader": "^9.6.0",
59+
"typescript": "^6.0.3",
60+
"webpack-cli": "^7.0.3",
61+
"webpack-dev-server": "^5.2.4"
6162
},
6263
"description": "@syntax-tm GitHub Pages Site",
6364
"packageManager": "yarn@4.3.1"

postcss.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @type {import('postcss-load-config').Config} */
22
const config = {
33
plugins: {
4-
tailwindcss: {},
4+
'@tailwindcss/postcss': {},
55
// autoprefixer: {},
66
},
77
};

src/app/globals.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import "tailwindcss";
42

53
@plugin 'tailwind-scrollbar';
64

@@ -62,3 +60,7 @@ body {
6260
text-wrap: balance;
6361
}
6462
}
63+
64+
a {
65+
color: unset;
66+
}

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function RootLayout({
3131
<meta name="keywords" content={'gundwn, gundwn.gg, steam, xbox, syntax-tm, github, git, xmb, links, social, profile, games'} />
3232
<meta name="twitter:site" content="@gundwnsrc" />
3333
</Head>
34-
<body className={`${inter.className}`}>{children}</body>
34+
<body className={`${inter.className} text-white`}>{children}</body>
3535
</html>
3636
);
3737
}

src/components/clock/clock.css

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,18 @@
77
color: white;
88
text-align: right;
99
font-size: 18px;
10-
z-index: 30;
10+
z-index: 1;
1111
}
1212

13-
@font-face {
14-
font-family: 'clock-colon';
15-
src: url('')
16-
}
13+
1714

1815
.clock .clock-container {
1916
width: auto;
2017
border: 1px solid #dadada;
2118
border-right: none;
2219
border-radius: 3px;
2320
padding: 5px 40px 5px 20px;
24-
z-index: 30;
21+
z-index: 1;
2522
}
2623

2724
.clock .clock-container p {

src/components/icons/icons.tsx

Lines changed: 68 additions & 68 deletions
Large diffs are not rendered by default.

src/components/modal/Modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default function Modal() {
7979
{/* <div className="right-0 top-0 absolute w-[30px] m-5 aspect-square z-[200]">
8080
<FontAwesomeIcon icon={faClose} className="w-full h-full" />
8181
</div> */}
82-
<dialog className="flex flex-col w-screen h-screen bg-black bg-opacity-75 z-[100] overflow-none backdrop-blur">
82+
<dialog className="flex flex-col w-screen h-screen bg-black/75 z-100 overflow-none backdrop-blur">
8383
<div className="w-full h-[15%] relative">
8484
<audio ref={audioRef} src='/audio/nav.mp3' />
8585
<div className="relative contents">

src/components/modal/modal.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,7 @@ kbd > svg {
2828
dialog {
2929
inset: 0;
3030
}
31+
32+
hr {
33+
color: white;
34+
}

src/components/modal/views/copy.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ export const CopyView = ({ title, description, value }: CopyViewProps) => {
2222
<div className="my-auto mx-auto grid grid-cols-1 w-full h-full justify-items-center">
2323
<div className="relative my-auto">
2424
<div className="flex mb-2 ">
25-
<label className="text-lg sm:text-xl my-auto opacity-50 text-white flex-grow align-bottom mb-1">
25+
<label className="text-lg sm:text-xl my-auto opacity-50 text-white grow align-bottom mb-1">
2626
{title}
2727
</label>
2828
{description && (
2929
<FontAwesomeIcon icon={faQuestionCircle} className="w-5 h-5 mb-1 opacity-25 hover:opacity-100 align-self-end justify-self-end text-white justify-right"
3030
title={description} />
3131
)}
3232
</div>
33-
<div className="grid grid-cols-2 grid-rows-1 relative w-fit max-w-[600px] overflow-ellipsis">
33+
<div className="grid grid-cols-2 grid-rows-1 relative w-fit max-w-150 text-ellipsis">
3434
<input type="text"
3535
readOnly
3636
title="Click to copy."

src/components/xmb-menu/xmb-menu-item.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const MenuItem = ({ index, item, y }: MenuItemProps) => {
5353
<>
5454
<Link
5555
id={item.id}
56-
className={`w-100 relative xmb-item flex justify-self-center select-none ${active ? "active" : "inactive"} ${index === 0 ? "first" : ""}`}
56+
className={`w-100 max-w-[120px] relative xmb-item flex justify-self-center select-none ${active ? "active" : "inactive"} ${index === 0 ? "first" : ""}`}
5757
style={styleProps}
5858
href={item.link || ""}
5959
onClick={(e) => {
@@ -68,11 +68,11 @@ export const MenuItem = ({ index, item, y }: MenuItemProps) => {
6868
}}
6969
target={item.link && "_blank" || undefined}>
7070
<div className="grid grid-cols-1 overflow-visible relative">
71-
<div className="w-[120px]">
71+
<div className="w-30">
7272
{item.icon}
7373
</div>
74-
<div className="absolute pl-[120px] h-[100%] m-[5px] align-middle place-content-evenly">
75-
<div className="mt-[-20px] h-[100%] grid grid-cols-1 content-center auto-rows-max select-none w-300 text-left">
74+
<div className="absolute pl-30 h-full m-1.25 align-middle place-content-evenly">
75+
<div className="-mt-5 h-full grid grid-cols-1 content-center auto-rows-max select-none w-300 text-left">
7676
<div className="row xmb-item-name text-nowrap select-none">
7777
{item.title}
7878
</div>

0 commit comments

Comments
 (0)