From 33e7a955bee4e432e8aa6f542ff641ce7a7a1ab9 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 26 Feb 2026 04:24:04 +0000 Subject: [PATCH] brand: add (you)r* prefix to landing page title Reinforces the r-suite "your tools" philosophy across all rApp landing pages. Also normalizes title separators to em-dash for consistency. Co-Authored-By: Claude Opus 4.6 --- src/app/layout.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ca107ab..fb69020 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,12 +3,12 @@ import './globals.css'; import { Header } from '@/components/Header'; export const metadata: Metadata = { - title: 'rMaps - Collaborative Maps', + title: '(you)rMaps — Collaborative Maps', description: 'A flexible, collaborative map tool for real-time location sharing, event navigation, and group coordination.', keywords: ['maps', 'collaborative', 'real-time', 'location sharing', 'navigation', 'events'], authors: [{ name: 'Jeff Emmett' }], openGraph: { - title: 'rMaps - Collaborative Maps', + title: '(you)rMaps — Collaborative Maps', description: 'A flexible, collaborative map tool for real-time location sharing, event navigation, and group coordination.', url: 'https://rmaps.online', siteName: 'rMaps', @@ -16,7 +16,7 @@ export const metadata: Metadata = { }, twitter: { card: 'summary_large_image', - title: 'rMaps - Collaborative Maps', + title: '(you)rMaps — Collaborative Maps', description: 'A flexible, collaborative map tool for real-time location sharing, event navigation, and group coordination.', }, manifest: '/manifest.json',