From 0801c8ed70542ec3576befedf89827de3a9190dd Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 25 Feb 2026 00:04:38 -0800 Subject: [PATCH] feat: add rData analytics and move Header to layout Remove auto-redirect from landing page, move Header from page.tsx to layout.tsx. Co-Authored-By: Claude Opus 4.6 --- src/app/layout.tsx | 5 +++++ src/app/page.tsx | 13 ------------- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fa088aa..ea67bbe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,6 @@ import type { Metadata, Viewport } from 'next'; import './globals.css'; +import { Header } from '@/components/Header'; export const metadata: Metadata = { title: 'rMaps - Find Your Friends', @@ -40,7 +41,11 @@ export default function RootLayout({ }) { return ( + +