From 266ecda1c7c9228a6ab04aabd34aea494eefebc9 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:35:04 +0400 Subject: [PATCH] chore: copy --- src/components/profile-info-dialog.tsx | 285 ++++++++++++++----------- 1 file changed, 165 insertions(+), 120 deletions(-) diff --git a/src/components/profile-info-dialog.tsx b/src/components/profile-info-dialog.tsx index 735c391..c7f03a2 100644 --- a/src/components/profile-info-dialog.tsx +++ b/src/components/profile-info-dialog.tsx @@ -82,6 +82,15 @@ function OSIcon({ os }: { os: string }) { } } +function InfoCard({ label, value }: { label: string; value: string }) { + return ( +
{label}
+{value}
+