/**
* Splash 主内容文案
*/
const APOSTROPHE = "'";
export function SplashContent({ characterName }: { characterName: string }) {
return (
Welcome to {characterName}{APOSTROPHE}s secret hideout~
{"\n"}It{APOSTROPHE}s just the two of us now.
{"\n"}Feel free to whisper your
{"\n"}little secrets.
);
}