Compare commits
2 commits
4f6a071385
...
a638ee31b2
| Author | SHA1 | Date | |
|---|---|---|---|
| a638ee31b2 | |||
| af7575efff |
4 changed files with 1336 additions and 1073 deletions
|
|
@ -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
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.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",
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue