From 5fcfa078386debc85a9d26e4e3bbe29f707ee6fa Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:13:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 206845a..eb7a2b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import "./globals.css"; +import "@/styles/globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "NomadTrail - AI-Powered Travel Planning", description: "Plan your perfect trip with AI. Generate personalized itineraries, discover destinations, and manage travel budgets effortlessly."}; + title: "NomadTrail - AI-Powered Travel Planning", description: "Plan your perfect trip with NomadTrail's AI. Generate personalized itineraries, discover destinations, and manage budgets effortlessly."}; export default function RootLayout({ children, -- 2.49.1 From f135c7c45e1fbc901958a6ef1e7f8585e5080747 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:13:59 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 57746ee..7ea92da 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -76,23 +76,23 @@ export default function NomadTrailPage() { tagIcon={Zap} tagAnimation="slide-up" features={[ + { + id: "ai-itinerary", label: "AI Itinerary", title: "Generate Perfect Itineraries in Seconds", items: [ + "Personalized based on interests & budget", "Real-time activity recommendations", "Flexible scheduling & durations", "Weather & local event integration" + ], + buttons: [{ text: "Learn More", href: "#" }] + }, { id: "destination-discovery", label: "Discovery", title: "Explore Hidden Gems & Popular Destinations", items: [ "Smart destination matching algorithm", "Curated local experience guides", "Community recommendations & reviews", "Real-time availability & pricing" ], buttons: [{ text: "Explore Destinations", href: "#destinations" }] }, - { - id: "ai-itinerary", label: "AI Itinerary", title: "Generate Perfect Itineraries in Seconds", items: [ - "Personalized based on interests & budget", "Real-time activity recommendations", "Flexible scheduling & durations", "Weather & local event integration" - ], - buttons: [{ text: "Create Itinerary", href: "#" }] - }, { id: "budget-management", label: "Budget", title: "Smart Budget Tracking & Optimization", items: [ "Real-time expense tracking", "Multi-currency support with live rates", "Budget alerts & optimization tips", "Detailed cost breakdown analytics" ], - buttons: [{ text: "Manage Budget", href: "#pricing" }] + buttons: [{ text: "View Pricing", href: "#pricing" }] } ]} animationType="opacity" @@ -190,6 +190,7 @@ export default function NomadTrailPage() { textboxLayout="default" useInvertedBackground={true} speed={35} + buttons={[{ text: "Join These Travelers", href: "#cta" }]} /> -- 2.49.1