12. right-sidebar.tsx

Cursor

特に書く内容を決めず文字だけ載せておく

export function RightSidebar() {
  return (
    <aside>
      <section>
        <h2 className="mb-4 text-lg font-semibold">
          About This Site
        </h2>

        <p className="text-sm leading-6 text-muted-foreground">
          This site provides easy-to-understand information about
          taxes, pensions, social insurance, and personal finance
          in Japan for foreigners living in or planning to move to Japan.
        </p>
      </section>
    </aside>
  );
}
BACK