From 6593828efbbc91f162b9d08803a2cd7cde62e91a Mon Sep 17 00:00:00 2001 From: Radiquum Date: Sun, 27 Jul 2025 03:10:51 +0500 Subject: [PATCH] refactor: update opengraph for character page --- app/character/kentai/page.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/app/character/kentai/page.tsx b/app/character/kentai/page.tsx index ae0a893..99c1bcf 100644 --- a/app/character/kentai/page.tsx +++ b/app/character/kentai/page.tsx @@ -1,4 +1,5 @@ /* eslint-disable @next/next/no-img-element */ +import type { Metadata } from "next"; import { CharacterColor } from "@/app/components/CharacterColor"; import Link from "next/link"; const CharacterColors = { @@ -6,6 +7,23 @@ const CharacterColors = { Clothes: ["#492020", "#1c1a1d", "#39373b", "#494749", "#69676a", "#98959a"], }; +export const metadata: Metadata = { + title: "Kentai Radiquum", + description: + "Character page. \ + Kentai is a friendly yet introverted red panda who values his quiet space and prefers meaningful interactions over large crowds. \ + Curious by nature and sharp-minded, he has a deep love for technology and is always eager to explore something new. While he keeps a low profile, those close to him know him as thoughtful, creative, and quietly expressive.", + openGraph: { + images: [ + { + url: "https://radiquum.wah.su/characters/kentai_redpanda_thumb.jpg", + width: 1120, + height: 800, + }, + ], + }, +}; + export default function CharacterKentai() { return (