From bc00fffdbd3ea421588b4db6f504d29f6102beba Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 24 Feb 2026 20:19:08 -0800 Subject: [PATCH] fix: dark background + emoji favicon for rStack design consistency Standardize to dark background (#0f172a / slate-900) and add emoji data URI favicon matching the rStack ecosystem. Co-Authored-By: Claude Opus 4.6 --- src/app/globals.css | 4 ++-- src/app/layout.tsx | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index d477be5..13e06e5 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -3,8 +3,8 @@ @tailwind utilities; :root { - --background: #0a0a0a; - --foreground: #ededed; + --background: #0f172a; + --foreground: #e2e8f0; } body { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5b80d75..f605b6a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,6 +11,9 @@ const inter = Inter({ export const metadata: Metadata = { title: 'rTrips - Collaborative Trip Planning', description: 'Plan trips together with natural language input, structured itineraries, and a real-time collaborative canvas. Describe your trip and let AI structure it for you.', + icons: { + icon: "data:image/svg+xml,✈️", + }, openGraph: { title: 'rTrips - Collaborative Trip Planning', description: 'Plan trips together with natural language input and real-time collaborative canvas.',