From 93a633f4a777c9b61d49db3e2112e7759ccb39d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Torres?= Date: Wed, 8 May 2024 15:54:13 +0100 Subject: [PATCH 1/2] Add jsonLd metadata --- packages/web-app/app/layout.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/packages/web-app/app/layout.tsx b/packages/web-app/app/layout.tsx index ef34200a..11b0dbc0 100644 --- a/packages/web-app/app/layout.tsx +++ b/packages/web-app/app/layout.tsx @@ -7,6 +7,24 @@ import { Providers } from './_providers'; import Image from 'next/image'; import backgroundDesktop from '../public/background-desktop.png'; +const jsonLd = { + '@context': 'https://schema.org', + '@type': 'Organization', + image: + 'https://uploads-ssl.webflow.com/6613ccb2950e14dbbe77a183/661fab3674735b20d0c82435_citizend-share-image.jpg', + url: 'https://app.citizend.xyz', + sameAs: [ + 'https://twitter.com/citizendxyz', + 'https://discord.com/invite/citizendxyz', + 'https://t.me/+QcSyoxz9bpYyZDhk', + 'https://medium.com/@citizendxyz', + ], + logo: 'https://uploads-ssl.webflow.com/6613ccb2950e14dbbe77a183/66214110832182d072dc54f2_citizend-logo.png', + name: 'citizend: Token Launch Platform', + description: + 'Citizend is the community-curated token launch platform of web3 enabling both community contributions and token launches in a secure, transparent and compliant way. Find the next early gem here.', +}; + export const metadata: Metadata = { title: { template: '%s | citizend: Token Launch Platform', @@ -40,6 +58,10 @@ export default function RootLayout({ }>) { return ( +