Skip to content

Commit 194c971

Browse files
feat: V2 UI overhaul - dark hero, bento grid, country destinations, testimonials, HOW IT WORKS, fixed mobile nav
1 parent 213a904 commit 194c971

4 files changed

Lines changed: 472 additions & 276 deletions

File tree

src/app/globals.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,10 @@ h1, h2, h3, .font-display {
226226
.dark .badge-accent { background: rgba(20,184,166,0.15); color: #5eead4; }
227227
.dark .badge-amber { background: rgba(251,191,36,0.15); color: #fcd34d; }
228228

229+
/* ── Hide Scrollbar (horizontal scroll rows) ─────────────────────────────── */
230+
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
231+
.hide-scrollbar::-webkit-scrollbar { display: none; }
232+
229233
/* ── Gradient border ─────────────────────────────────────────────────────── */
230234
.gradient-border {
231235
position: relative;

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export default function RootLayout({ children }: Readonly<{ children: React.Reac
115115
</header>
116116

117117
{/* ── MAIN CONTENT ─────────────────────────────────────────────- */}
118-
<main className="flex-grow flex flex-col relative w-full max-w-7xl mx-auto p-4 sm:p-6">
118+
<main className="flex-grow flex flex-col relative w-full overflow-x-hidden">
119119
{children}
120120
</main>
121121

0 commit comments

Comments
 (0)