Skip to content

Commit 078584b

Browse files
committed
Redesign: modern landing with Hero, simplified sections, consistent 1200px layout; suppress hydration noise; navbar aligned
1 parent 57e868f commit 078584b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function RootLayout({
4747
children: React.ReactNode;
4848
}>) {
4949
return (
50-
<html lang="en">
50+
<html lang="en" suppressHydrationWarning>
5151
<body suppressHydrationWarning className="antialiased">
5252
<Navigation />
5353
<main className="min-h-screen">

src/components/Navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const Navigation = () => {
3232

3333
return (
3434
<nav className="bg-gray-900 text-white shadow-lg sticky top-0 z-50">
35-
<div className="w-full max-w-[1100px] mx-auto px-4">
35+
<div className="w-full max-w-[1200px] mx-auto px-4">
3636
<div className="flex items-center justify-between h-16">
3737
{/* Logo */}
3838
<div className="flex items-center flex-shrink-0">

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
sm: '640px',
1414
md: '768px',
1515
lg: '1024px',
16-
xl: '1100px',
16+
xl: '1200px',
1717
'2xl': '72rem',
1818
},
1919
},

0 commit comments

Comments
 (0)