Need onboarding? Make sure your profile carries a Cubid ID so peers can
locate you instantly.
diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx
index d8bebf1..4d51860 100644
--- a/frontend/src/app/layout.tsx
+++ b/frontend/src/app/layout.tsx
@@ -8,7 +8,7 @@ import { AppHeader } from "../components/AppHeader";
import { AuthProvider } from "../components/AuthProvider";
export const metadata: Metadata = {
- title: "Peer Mapper",
+ title: "Trust Me Bro",
description: "QR-powered trust overlaps on Moonbeam",
};
diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx
index 4c1bb9a..b5e06f5 100644
--- a/frontend/src/app/page.tsx
+++ b/frontend/src/app/page.tsx
@@ -8,7 +8,7 @@ const HIGHLIGHTS = [
{
title: "Prove people are known, not anonymous",
description:
- "Peer Mapper connects Supabase auth, Cubid IDs, and Ethereum attestations so you can verify that the human in front of you is vouched for by people you already trust.",
+ "Trust Me Bro connects Supabase auth, Cubid IDs, and Ethereum attestations so you can verify that the human in front of you is vouched for by people you already trust.",
},
{
title: "QR handshakes in under a minute",
@@ -72,7 +72,7 @@ export default function Home() {
-
Peer Mapper
+
Trust Me Bro
Trust people faster with verifiable overlaps
diff --git a/frontend/src/components/AppFooter.tsx b/frontend/src/components/AppFooter.tsx
index f67630f..0263343 100644
--- a/frontend/src/components/AppFooter.tsx
+++ b/frontend/src/components/AppFooter.tsx
@@ -31,7 +31,7 @@ export function AppFooter() {
))}
-
© {new Date().getFullYear()} Peer Mapper • Built for trusted introductions on Moonbeam.
+
© {new Date().getFullYear()} Trust Me Bro • Built for trusted introductions on Moonbeam.
);
diff --git a/frontend/src/components/AppHeader.tsx b/frontend/src/components/AppHeader.tsx
index 7746819..c7f082a 100644
--- a/frontend/src/components/AppHeader.tsx
+++ b/frontend/src/components/AppHeader.tsx
@@ -7,9 +7,9 @@ import { useMemo } from "react";
import { useUserStore } from "../lib/store";
function getInitials(value: string | null | undefined): string {
- if (!value) return "PM";
+ if (!value) return "TM";
const trimmed = value.trim();
- if (!trimmed) return "PM";
+ if (!trimmed) return "TM";
const segments = trimmed.split(/\s+/).slice(0, 2);
if (segments.length === 1) {
return segments[0]!.slice(0, 2).toUpperCase();
@@ -25,7 +25,7 @@ export function AppHeader() {
const session = useUserStore((state) => state.session);
const profile = useUserStore((state) => state.user);
- const displayName = profile?.display_name ?? session?.user?.email ?? "Peer Mapper";
+ const displayName = profile?.display_name ?? session?.user?.email ?? "Trust Me Bro";
const avatarInitials = useMemo(
() => getInitials(profile?.display_name ?? profile?.cubid_id ?? session?.user?.email),
[profile?.cubid_id, profile?.display_name, session?.user?.email],
@@ -39,7 +39,7 @@ export function AppHeader() {