From 90f57cb9b9fa12b2e2eaff43cc15d79c34727c7d Mon Sep 17 00:00:00 2001 From: Daniel Rosel Date: Tue, 13 Jan 2026 15:09:52 +0100 Subject: [PATCH] chore: styling and title updates --- web/src/app/globals.css | 3 +++ web/src/app/layout.tsx | 4 ++-- web/src/components/ui/Navigation.tsx | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/web/src/app/globals.css b/web/src/app/globals.css index 4a5b0c9..457b974 100644 --- a/web/src/app/globals.css +++ b/web/src/app/globals.css @@ -8,6 +8,9 @@ --bg-secondary: #f5f5f5; --text-primary: #333333; --text-secondary: #666666; + --accent-primary: #007aff; + --accent-primary-hover: #0051d5; + --accent-primary-light: #e6f2ff; --spacing-sm: 8px; --spacing-md: 16px; --spacing-lg: 32px; diff --git a/web/src/app/layout.tsx b/web/src/app/layout.tsx index e9f9b63..5ff49ae 100644 --- a/web/src/app/layout.tsx +++ b/web/src/app/layout.tsx @@ -15,8 +15,8 @@ const geistMono = Geist_Mono({ }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Travel Booking Platform", + description: "Book flights and hotels with dynamic pricing", }; export default function RootLayout({ diff --git a/web/src/components/ui/Navigation.tsx b/web/src/components/ui/Navigation.tsx index 9d9d4cf..6f0ecbb 100644 --- a/web/src/components/ui/Navigation.tsx +++ b/web/src/components/ui/Navigation.tsx @@ -20,7 +20,7 @@ const NavLink = ({ href, children }: { href: string; children: React.ReactNode } href={href} className={`px-4 py-2 rounded-md transition-colors ${ isActive - ? 'bg-[var(--accent-primary)] font-semibold' + ? 'bg-[var(--accent-primary)] text-white font-semibold' : 'hover:bg-[var(--accent-primary-light)] text-[var(--text-primary)]' }`} >