/* 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 = { Body: ["#ffb1ce", "#91d1fd", "#ffffff"], 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 (
Reference

Info

Name: Kentai Radiquum

Species: Red Panda

Male, average height, slim build

Colors

{Object.entries(CharacterColors).map(([category, colors]) => (

{category}

{colors.map((color) => ( ))}
))}

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.

Hobbies

  • Programming — not just a skill, but a form of self-expression and problem-solving he deeply enjoys.

  • Photography — capturing small details and cozy moments from his world.

  • Plush Toy Collecting — he has a soft spot for plushies, especially red pandas. His collection brings him comfort and emotional grounding.

Habits

  • His tail gently wags when he's fully absorbed in something.

  • Tugs or adjusts his collar when thinking through a tricky problem.

  • Always has music playing while he works, and sometimes hums along without noticing.

  • Loves curling up in a blanket with a plush toy and relaxing to music — his version of peace.

); }