fix(ui): standardise page widths to two-tier system
Listing pages (home, products, eval): max-w-4xl Content pages (product detail, eval detail, about, privacy, disclaimer): max-w-2xl Previously four different widths were in use across the app. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
fdf4d7258d
commit
b1458934c3
3 changed files with 3 additions and 3 deletions
|
|
@ -121,7 +121,7 @@ export default function EvalDetailPage() {
|
|||
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(breadcrumbJsonLd) }} />
|
||||
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(softwareJsonLd) }} />
|
||||
|
||||
<div className="max-w-xl mx-auto px-5 pt-12 pb-10">
|
||||
<div className="max-w-2xl mx-auto px-5 pt-12 pb-10">
|
||||
{/* Back */}
|
||||
<button
|
||||
onClick={() => window.history.state?.idx ? navigate(-1) : navigate('/eval')}
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@ export default function ProductDetailPage() {
|
|||
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(breadcrumbJsonLd) }} />
|
||||
)}
|
||||
|
||||
<div className="max-w-xl mx-auto px-5 pt-12 pb-10">
|
||||
<div className="max-w-2xl mx-auto px-5 pt-12 pb-10">
|
||||
{/* Back */}
|
||||
<button
|
||||
onClick={() => window.history.state?.idx ? navigate(-1) : navigate('/')}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ export default function ProductsPage() {
|
|||
<meta property="og:description" content="Browse all official Microsoft Windows ISO releases available for direct download." />
|
||||
<meta property="og:url" content={`${SITE_URL}/products`} />
|
||||
|
||||
<div className="max-w-3xl mx-auto px-4 pt-12 pb-10">
|
||||
<div className="max-w-4xl mx-auto px-4 pt-12 pb-10">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 16 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue