import { PanelSectionRow } from "@decky/ui";
import { ConfigurationData } from "../config/configSchema";
import t from '../i18n/i18n';
interface UsageInstructionsProps {
config: ConfigurationData;
}
export function UsageInstructions({ config: _config }: UsageInstructionsProps) {
return (
<>
{t('USAGE_TITLE', 'Usage Instructions')}
{t('USAGE_DESC', 'Click "Copy Launch Option" button, then paste it into your Steam game\'s launch options to enable frame generation.')}
~/lsfg %command%
{t('USAGE_CONFIG_NOTE', 'The configuration is stored in ~/.config/lsfg-vk/conf.toml and hot-reloads while games are running.')}
>
);
}