Compare commits

...

2 commits

Author SHA1 Message Date
a638ee31b2 fix: small fix + CVE 2025-12-08 21:53:34 +01:00
af7575efff feat: added analytics 2025-10-28 15:56:53 +01:00
4 changed files with 1336 additions and 1073 deletions

View file

@ -4,6 +4,11 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<script
defer
src="https://umami.alzalia.fr/getinfo"
data-website-id="434842c9-cb97-4b8d-bf94-b755989ec6b8"
></script>
<title>Personal Website</title>
</head>
<body>

2382
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -20,8 +20,8 @@
"@tanstack/react-router": "^1.130.2",
"@tanstack/react-router-devtools": "^1.131.27",
"@tanstack/router-plugin": "^1.121.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",

View file

@ -21,14 +21,16 @@ export default function Comments() {
let data = Route.useLoaderData()
let lang = loadLang()
const items = data.map((e: any, i: any) => (
<Comment
author={e.author}
content={e.content}
date_posted={e.date_posted}
key={i}
/>
))
const items = data
.map((e: any, i: any) => (
<Comment
author={e.author}
content={e.content}
date_posted={e.date_posted}
key={i}
/>
))
.reverse()
return (
<div className="bg-[url(/public/bg.jpeg)] bg-cover bg-no-repeat bg-center min-h-screen">