mirror of
https://github.com/awatertrevi/xamarin-neo4j.git
synced 2026-09-22 09:05:29 +00:00
Replace all iOS-only references with iOS + Android across the landing page, meta tags, footer, and privacy policy. Convert Play Store "Coming Soon" placeholders into active Google Play links. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
---
|
|
interface Props {
|
|
title?: string;
|
|
description?: string;
|
|
canonical?: string;
|
|
}
|
|
|
|
const {
|
|
title = 'PocketGraph — Neo4j & Memgraph Client',
|
|
description = 'Connect to your Neo4j or Memgraph database from iPhone, iPad, and Android. Full Cypher editor, graph visualization, and Bolt protocol — in your pocket.',
|
|
canonical,
|
|
} = Astro.props;
|
|
|
|
const siteUrl = 'https://pocketgraph.app';
|
|
const ogImage = `${siteUrl}/og.png`;
|
|
const url = canonical ? `${siteUrl}${canonical}` : siteUrl;
|
|
---
|
|
<title>{title}</title>
|
|
<meta name="description" content={description} />
|
|
<link rel="canonical" href={url} />
|
|
|
|
<!-- Open Graph -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content={url} />
|
|
<meta property="og:title" content={title} />
|
|
<meta property="og:description" content={description} />
|
|
<meta property="og:image" content={ogImage} />
|
|
<meta property="og:site_name" content="PocketGraph" />
|
|
|
|
<!-- Twitter Card -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content={title} />
|
|
<meta name="twitter:description" content={description} />
|
|
<meta name="twitter:image" content={ogImage} />
|