Compare commits
No commits in common. "a638ee31b2d0a322a8be89c2fe88f604b1693ffb" and "4f6a07138520f5a16b7cc4b6ee222fa923165dca" have entirely different histories.
a638ee31b2
...
4f6a071385
4 changed files with 1073 additions and 1336 deletions
|
|
@ -4,11 +4,6 @@
|
|||
<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
2382
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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.2.1",
|
||||
"react-dom": "^19.2.1",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0",
|
||||
"react-markdown": "^10.1.0",
|
||||
"rehype-raw": "^7.0.0",
|
||||
"rehype-sanitize": "^6.0.0",
|
||||
|
|
|
|||
|
|
@ -21,16 +21,14 @@ 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}
|
||||
/>
|
||||
))
|
||||
.reverse()
|
||||
const items = data.map((e: any, i: any) => (
|
||||
<Comment
|
||||
author={e.author}
|
||||
content={e.content}
|
||||
date_posted={e.date_posted}
|
||||
key={i}
|
||||
/>
|
||||
))
|
||||
|
||||
return (
|
||||
<div className="bg-[url(/public/bg.jpeg)] bg-cover bg-no-repeat bg-center min-h-screen">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue