fix: Restore correct Tailwind CSS classes for layout

- Fixed max-w-w160 → max-w-[640px] (was causing full-width issue)
- Fixed mt-25 → mt-[100px] (mobile top margin for language buttons)
This commit is contained in:
Oussama Douhou
2026-01-13 16:44:30 +01:00
parent 86fe7a8bf1
commit 5048c44de2

View File

@@ -124,8 +124,8 @@ export default function DeployPage() {
<LanguageSelector currentLang={lang} onLangChange={setLang} />
<div className="relative z-10 w-full max-w-w160 p-4 md:p-8">
<header className="text-center mb-12 mt-25 md:mt-0">
<div className="relative z-10 w-full max-w-[640px] p-4 md:p-8">
<header className="text-center mb-12 mt-[100px] md:mt-0">
<motion.h1
initial={{ opacity: 0, y: -20 }}
animate={{ opacity: 1, y: 0 }}