Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
143 changes: 123 additions & 20 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,45 +7,148 @@
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<title>Maple AI</title>
<!-- Twitter / OG -->
<meta name="description" content="Private AI chat" />
<!-- SEO -->
<meta
name="description"
content="Maple AI is a private AI chat assistant with end-to-end encryption. Your conversations are encrypted on your device and processed inside hardware-isolated secure enclaves. Not even Maple can read your data."
/>
<meta name="application-name" content="Maple AI" />
<meta name="keywords" content="AI, Chat, LLM, Privacy, Confidential Compute" />
<meta
name="keywords"
content="AI, private AI, encrypted AI chat, LLM, privacy, confidential computing, secure enclave, end-to-end encryption, ChatGPT alternative"
/>
<meta name="theme-color" content="#000" />
<meta name="creator" content="OpenSecret" />
<meta name="creator" content="Maple AI" />
<meta name="category" content="Tools" />
<meta name="classification" content="Website" />
<meta property="og:title" content="Maple AI" />
<!-- Open Graph -->
<meta property="og:title" content="Maple AI — Private AI Chat with End-to-End Encryption" />
<meta
property="og:description"
content="Private AI chat"
content="AI chat encrypted end-to-end. Your conversations are processed within hardware-isolated secure enclaves. Open-source, open-weight models, zero data retention. Available on web, macOS, Linux, iOS, and Android."
/>
<meta property="og:image" content="https://trymaple.ai/twitter-card.jpg" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://trymaple.ai" />
<meta property="og:site_name" content="Maple AI" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Maple AI" />
<meta name="twitter:site" content="@TryMapleAI" />
<meta name="twitter:title" content="Maple AI — Private AI Chat with End-to-End Encryption" />
<meta
name="twitter:description"
content="Private AI chat"
content="AI chat encrypted end-to-end. Your conversations are processed within hardware-isolated secure enclaves. Open-source, open-weight models, zero data retention."
/>
<meta name="twitter:image" content="https://trymaple.ai/twitter-card.jpg" />
<!-- Icons -->
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="android-chrome-192x192.png"
/>
<link rel="icon" type="image/png" sizes="192x192" href="/android-chrome-192x192.png" />
<link rel="manifest" href="/manifest.json" />
<link
rel="preload"
href="/maple-logo.svg"
as="image"
type="image/svg+xml"
/>
<link rel="preload" href="/maple-logo.svg" as="image" type="image/svg+xml" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Maple AI",
"url": "https://trymaple.ai",
"logo": "https://trymaple.ai/favicon.png",
"description": "Maple AI is a private AI chat assistant with end-to-end encryption, built on confidential computing with hardware-isolated secure enclaves.",
"foundingDate": "2025",
"sameAs": [
"https://twitter.com/TryMapleAI",
"https://discord.gg/ch2gjZAMGy",
"https://github.com/OpenSecretCloud/Maple"
],
"contactPoint": [
{
"@type": "ContactPoint",
"email": "support@trymaple.ai",
"contactType": "customer support"
},
{
"@type": "ContactPoint",
"email": "team@trymaple.ai",
"contactType": "sales"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Maple AI",
"url": "https://trymaple.ai",
"description": "Private AI chat with end-to-end encryption. Conversations are encrypted on your device and processed inside hardware-isolated secure enclaves. Uses open-weight AI models with zero data retention.",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "Web, macOS, Linux, iOS, Android",
"offers": [
{
"@type": "Offer",
"name": "Free",
"price": "0",
"priceCurrency": "USD",
"description": "End-to-end encrypted AI chat with Meta Llama 3.3 70B"
},
{
"@type": "Offer",
"name": "Pro",
"price": "20",
"priceCurrency": "USD",
"description": "All models, document upload, voice, live web search, API access",
"priceSpecification": {
"@type": "UnitPriceSpecification",
"price": "20",
"priceCurrency": "USD",
"billingDuration": "P1M"
}
},
{
"@type": "Offer",
"name": "Max",
"price": "100",
"priceCurrency": "USD",
"description": "20x Pro usage, priority support, early access to new features",
"priceSpecification": {
"@type": "UnitPriceSpecification",
"price": "100",
"priceCurrency": "USD",
"billingDuration": "P1M"
}
},
{
"@type": "Offer",
"name": "Team",
"price": "30",
"priceCurrency": "USD",
"description": "Per seat, pooled credits, team management, unified billing",
"priceSpecification": {
"@type": "UnitPriceSpecification",
"price": "30",
"priceCurrency": "USD",
"billingDuration": "P1M"
}
}
],
"featureList": [
"End-to-end encryption",
"Hardware-isolated secure enclaves (AWS Nitro, NVIDIA TEE)",
"Open-source server and client code",
"Open-weight AI models only",
"Zero data retention",
"Document upload (PDF, TXT, MD)",
"Image upload and analysis",
"Voice input and output",
"Live web search",
"Cross-device encrypted sync",
"Anonymous accounts with Bitcoin payment",
"OpenAI-compatible developer API"
]
}
</script>
</head>
<body>
<div id="root" class="h-full"></div>
Expand Down
Loading
Loading