"use client"; import React from "react"; import { t } from "@/content/locales"; interface VictoryScreenProps { credits: number; onRestart: () => void; } export default function VictoryScreen({ credits, onRestart, }: VictoryScreenProps) { const creditsBlue = "#4bd5ee"; return (

{t.VICTORY.TITLE}

{t.VICTORY.SUBTITLE}

{t.VICTORY.MESSAGE}

{credits.toLocaleString()} CR

The galaxy will remember your name.
); }