Phrase Guide

Quick language helper with English meaning, native script, and romanized transliteration per row.

Japanese · Quick phrases
Thank youありがとうarigatō
Excuse meすみませんsumimasen
Where's the station?駅はどこですかeki wa doko desu ka

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Travel27 } from "@/components/beste/piece/travel27";

<Travel27
  languageLabel="Japanese · Quick phrases"
  phrases={[
    {
      "en": "Thank you",
      "local": "ありがとう",
      "romanized": "arigatō"
    },
    {
      "en": "Excuse me",
      "local": "すみません",
      "romanized": "sumimasen"
    },
    {
      "en": "Where's the station?",
      "local": "駅はどこですか",
      "romanized": "eki wa doko desu ka"
    }
  ]}
/>