Merge remote-tracking branch 'origin/main'

This commit is contained in:
2025-01-30 23:29:00 +01:00
6 changed files with 16 additions and 42 deletions

10
.fleet/run.json Normal file
View File

@@ -0,0 +1,10 @@
{
"configurations": [
{
"type": "npm",
"name": "npm configuration",
"command": "run",
"scripts": "dev"
}
]
}

8
package-lock.json generated
View File

@@ -23,7 +23,7 @@
"eslint-config-next": "15.1.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
"typescript": "^5.7.3"
}
},
"node_modules/@alloc/quick-lru": {
@@ -5682,9 +5682,9 @@
}
},
"node_modules/typescript": {
"version": "5.7.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz",
"integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==",
"version": "5.7.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
"integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",
"dev": true,
"license": "Apache-2.0",
"bin": {

View File

@@ -24,6 +24,6 @@
"eslint-config-next": "15.1.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
"typescript": "^5.7.3"
}
}

View File

@@ -1,19 +0,0 @@
import * as React from "react";
const GithubComponent = (props) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={800}
height={800}
viewBox="0 0 20 20"
{...props}
>
<title>{"github [#142]"}</title>
<path
fill="#000"
fillRule="evenodd"
d="M10 0c5.523 0 10 4.59 10 10.253 0 4.529-2.862 8.371-6.833 9.728-.507.101-.687-.219-.687-.492 0-.338.012-1.442.012-2.814 0-.956-.32-1.58-.679-1.898 2.227-.254 4.567-1.121 4.567-5.059 0-1.12-.388-2.034-1.03-2.752.104-.259.447-1.302-.098-2.714 0 0-.838-.275-2.747 1.051A9.396 9.396 0 0 0 10 4.958a9.375 9.375 0 0 0-2.503.345C5.586 3.977 4.746 4.252 4.746 4.252c-.543 1.412-.2 2.455-.097 2.714-.639.718-1.03 1.632-1.03 2.752 0 3.928 2.335 4.808 4.556 5.067-.286.256-.545.708-.635 1.371-.57.262-2.018.715-2.91-.852 0 0-.529-.985-1.533-1.057 0 0-.975-.013-.068.623 0 0 .655.315 1.11 1.5 0 0 .587 1.83 3.369 1.21.005.857.014 1.665.014 1.909 0 .271-.184.588-.683.493C2.865 18.627 0 14.783 0 10.253 0 4.59 4.478 0 10 0"
/>
</svg>
);
export default GithubComponent;

View File

@@ -1,17 +0,0 @@
import * as React from "react";
const LinkedInComponent = (props) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={800}
height={800}
fill="none"
viewBox="0 -0.5 25 25"
{...props}
>
<path
fill="#000"
d="M8.75 11a.75.75 0 0 0-1.5 0h1.5Zm-1.5 6a.75.75 0 0 0 1.5 0h-1.5Zm10 0a.75.75 0 0 0 1.5 0h-1.5ZM12 14h-.75.75Zm-.75 3a.75.75 0 0 0 1.5 0h-1.5Zm-2.5-9a.75.75 0 0 0-1.5 0h1.5Zm-1.5 1a.75.75 0 0 0 1.5 0h-1.5Zm0 2v6h1.5v-6h-1.5Zm11.5 6v-3h-1.5v3h1.5Zm0-3A3.75 3.75 0 0 0 15 10.25v1.5A2.25 2.25 0 0 1 17.25 14h1.5ZM15 10.25A3.75 3.75 0 0 0 11.25 14h1.5A2.25 2.25 0 0 1 15 11.75v-1.5ZM11.25 14v3h1.5v-3h-1.5Zm-4-6v1h1.5V8h-1.5Z"
/>
</svg>
);
export default LinkedInComponent;

View File

@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": ["dom", "dom.iterable", "esnext", "ES2017"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,