From 0acf5cfdd83438275c6e8fd23711408aa7127625 Mon Sep 17 00:00:00 2001 From: 0xJMC Date: Sat, 27 Jun 2026 18:26:19 -0400 Subject: [PATCH] chore(seo): add talentapp project-verification meta tag Adds to the root layout via Next's metadata.other so it renders in on every page. --- App/app/layout.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/App/app/layout.tsx b/App/app/layout.tsx index d3ee15f..e5448eb 100644 --- a/App/app/layout.tsx +++ b/App/app/layout.tsx @@ -4,7 +4,11 @@ import './styles.css'; export const metadata: Metadata = { title: 'PerkOS Knowledge', - description: 'A live knowledge layer for AI agents, powered by curated research and x402 access.' + description: 'A live knowledge layer for AI agents, powered by curated research and x402 access.', + other: { + 'talentapp:project_verification': + '6312cbdecd6b0d974fb841350d907866a1bc2ed3a10c7ac2057d9b747a3ef7ef662b202d1a8fcedc67ada1a5cc3d5cbddaf052fc7952b9a911c7c0fca1d4a572', + }, }; export default function RootLayout({ children }: { children: React.ReactNode }) {