Mobile: single-row logo+title on Home; add Sign Out to Profile
- Home: logo and «برگ وسط» now sit on one row (prevents overflow), with «بازی حکم آنلاین» as a small subtitle beneath the title next to the logo. - Profile: add a خروج (Sign Out) button at the bottom (when signed in). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -84,16 +84,23 @@ export function HomeScreen() {
|
|||||||
<motion.div
|
<motion.div
|
||||||
initial={{ opacity: 0, y: 16 }}
|
initial={{ opacity: 0, y: 16 }}
|
||||||
animate={{ opacity: 1, y: 0 }}
|
animate={{ opacity: 1, y: 0 }}
|
||||||
className="flex flex-col items-center text-center mt-3 mb-4 sm:mt-5 sm:mb-6"
|
className="flex flex-col items-center mt-4 mb-5 sm:mt-6 sm:mb-7"
|
||||||
>
|
>
|
||||||
<div className="size-12 sm:size-16 rounded-2xl gold-border flex items-center justify-center bg-navy-900 mb-2 sm:mb-3 shadow-lg">
|
{/* logo + title on one row (no overflow); subtitle beneath the title */}
|
||||||
<span className="gold-text text-3xl sm:text-4xl font-black leading-none">♠</span>
|
<div className="flex items-center gap-3">
|
||||||
|
<div className="size-12 sm:size-14 shrink-0 rounded-2xl gold-border flex items-center justify-center bg-navy-900 shadow-lg">
|
||||||
|
<span className="gold-text text-3xl font-black leading-none">♠</span>
|
||||||
|
</div>
|
||||||
|
<div className="text-start">
|
||||||
|
<h1 className="gold-text text-3xl sm:text-4xl font-black tracking-tight leading-none">
|
||||||
|
{t("app.title")}
|
||||||
|
</h1>
|
||||||
|
<p className="text-cream/60 mt-1.5 text-xs sm:text-sm leading-none">{t("app.subtitle")}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="mt-3">
|
||||||
|
<OnlinePlayers />
|
||||||
</div>
|
</div>
|
||||||
<h1 className="gold-text text-4xl sm:text-5xl font-black tracking-tight">
|
|
||||||
{t("app.title")}
|
|
||||||
</h1>
|
|
||||||
<p className="text-cream/60 mt-1 text-sm">{t("app.subtitle")}</p>
|
|
||||||
<OnlinePlayers />
|
|
||||||
</motion.div>
|
</motion.div>
|
||||||
|
|
||||||
{/* HERO: play online */}
|
{/* HERO: play online */}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { motion } from "framer-motion";
|
import { motion } from "framer-motion";
|
||||||
import { Check, ChevronLeft, Crown, Eye, EyeOff, Lock, Music, Pencil, Star, Upload, Users, Volume2 } from "lucide-react";
|
import { Check, ChevronLeft, Crown, Eye, EyeOff, Lock, LogOut, Music, Pencil, Star, Upload, Users, Volume2 } from "lucide-react";
|
||||||
import { useRef, useState } from "react";
|
import { useRef, useState } from "react";
|
||||||
import { ScreenHeader, ScreenShell } from "@/components/online/ScreenHeader";
|
import { ScreenHeader, ScreenShell } from "@/components/online/ScreenHeader";
|
||||||
import { RankBadge } from "@/components/online/RankBadge";
|
import { RankBadge } from "@/components/online/RankBadge";
|
||||||
@@ -35,6 +35,8 @@ export function ProfileScreen() {
|
|||||||
const profile = useSessionStore((s) => s.profile);
|
const profile = useSessionStore((s) => s.profile);
|
||||||
const updateProfile = useSessionStore((s) => s.updateProfile);
|
const updateProfile = useSessionStore((s) => s.updateProfile);
|
||||||
const upgradePlan = useSessionStore((s) => s.upgradePlan);
|
const upgradePlan = useSessionStore((s) => s.upgradePlan);
|
||||||
|
const signOut = useSessionStore((s) => s.signOut);
|
||||||
|
const isAuthed = useSessionStore((s) => s.isAuthed);
|
||||||
const go = useUIStore((st) => st.go);
|
const go = useUIStore((st) => st.go);
|
||||||
const fileRef = useRef<HTMLInputElement>(null);
|
const fileRef = useRef<HTMLInputElement>(null);
|
||||||
const [editing, setEditing] = useState(false);
|
const [editing, setEditing] = useState(false);
|
||||||
@@ -346,6 +348,20 @@ export function ProfileScreen() {
|
|||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Sign out */}
|
||||||
|
{isAuthed && (
|
||||||
|
<button
|
||||||
|
onClick={() => {
|
||||||
|
signOut();
|
||||||
|
go("home");
|
||||||
|
}}
|
||||||
|
className="mt-6 w-full glass rounded-2xl py-3 flex items-center justify-center gap-2 text-rose-300 hover:bg-navy-800/80 transition"
|
||||||
|
>
|
||||||
|
<LogOut className="size-4" />
|
||||||
|
{t("menu.signOut")}
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
</ScreenShell>
|
</ScreenShell>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user