add meta description for world page

This commit is contained in:
41666 2023-05-22 15:06:21 -04:00
parent ae45b29e93
commit d31c88115a
7 changed files with 36 additions and 13 deletions

View file

@ -1,5 +1,6 @@
import { json, type V2_MetaFunction } from "@remix-run/cloudflare";
import { useLoaderData } from "@remix-run/react";
import { IndexWorld } from "~/components/index-world";
import type { IndexResponse } from "~/utils/saerro";
import { indexQuery } from "~/utils/saerro";
@ -17,15 +18,9 @@ export default function Index() {
<div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.4" }}>
<h1>PS2.LIVE</h1>
<h2>Worlds</h2>
<ul>
{data.allWorlds.map((world) => (
<li key={world.id}>
<a href={`/worlds/${world.id}`}>{world.name}</a> -{" "}
{world.population.total} players ({world.population.vs} VS,{" "}
{world.population.nc} NC, {world.population.tr} TR)
</li>
))}
</ul>
{data.allWorlds.map((world) => (
<IndexWorld key={world.id} world={world} />
))}
</div>
);
}