Skip to content

Commit f503088

Browse files
committed
feat: Add comprehensive social media meta tags for GitHub Pages
- Update Open Graph tags with CodePrism title, description, and Dragonscale logo - Add Twitter Card meta tags for optimal social sharing experience - Include Dragonscale Industries Inc branding throughout meta tags - Update site title and tagline to highlight sponsorship - Add sponsors link to footer navigation - Enhance SEO with relevant keywords and descriptions - Set Dragonscale logo as primary social media image
1 parent 9404d27 commit f503088

1 file changed

Lines changed: 32 additions & 5 deletions

File tree

codeprism-docs/docusaurus.config.ts

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import type * as Preset from '@docusaurus/preset-classic';
55
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
66

77
const config: Config = {
8-
title: 'CodePrism',
9-
tagline: 'Understand and Analyze Your Codebase with AI',
8+
title: 'CodePrism - AI-Powered Code Intelligence MCP Server',
9+
tagline: 'Production-ready code intelligence for AI assistants. Sponsored by Dragonscale Industries Inc.',
1010
favicon: 'img/favicon.ico',
1111

1212
// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
@@ -70,8 +70,31 @@ const config: Config = {
7070
],
7171

7272
themeConfig: {
73-
// Replace with your project's social card
74-
image: 'img/docusaurus-social-card.jpg',
73+
// Social media meta tags
74+
image: 'https://cdn.prod.website-files.com/65577aeb720145c27d810263/66296bc4e8282c4a362065f5_logo.svg',
75+
metadata: [
76+
// Open Graph meta tags
77+
{name: 'og:type', content: 'website'},
78+
{name: 'og:title', content: 'CodePrism - AI-Powered Code Intelligence MCP Server'},
79+
{name: 'og:description', content: 'Production-ready code intelligence server implementing the Model Context Protocol (MCP) for AI assistants. Graph-based analysis, multi-language support, real-time insights. Sponsored by Dragonscale Industries Inc.'},
80+
{name: 'og:image', content: 'https://cdn.prod.website-files.com/65577aeb720145c27d810263/66296bc4e8282c4a362065f5_logo.svg'},
81+
{name: 'og:image:alt', content: 'Dragonscale Industries Inc - Primary Sponsor of CodePrism'},
82+
{name: 'og:site_name', content: 'CodePrism Documentation'},
83+
{name: 'og:url', content: 'https://rustic-ai.github.io/codeprism/'},
84+
85+
// Twitter Card meta tags
86+
{name: 'twitter:card', content: 'summary_large_image'},
87+
{name: 'twitter:title', content: 'CodePrism - AI-Powered Code Intelligence'},
88+
{name: 'twitter:description', content: '🤖 100% AI-Generated code intelligence MCP server with graph-based analysis. Sponsored by Dragonscale Industries Inc. 18 production-ready tools for AI assistants.'},
89+
{name: 'twitter:image', content: 'https://cdn.prod.website-files.com/65577aeb720145c27d810263/66296bc4e8282c4a362065f5_logo.svg'},
90+
{name: 'twitter:image:alt', content: 'Dragonscale Industries Inc Logo - CodePrism Sponsor'},
91+
92+
// Additional meta tags
93+
{name: 'description', content: 'Production-ready code intelligence server for AI assistants. Features graph-based code analysis, multi-language support, and real-time insights. 100% AI-generated project sponsored by Dragonscale Industries Inc.'},
94+
{name: 'keywords', content: 'AI, code intelligence, MCP server, Model Context Protocol, code analysis, graph-based analysis, Dragonscale Industries, AI assistant tools'},
95+
{name: 'author', content: 'Dragonscale Industries Inc'},
96+
{name: 'theme-color', content: '#2e8555'},
97+
],
7598
navbar: {
7699
title: 'CodePrism',
77100
logo: {
@@ -154,10 +177,14 @@ const config: Config = {
154177
label: 'License',
155178
href: 'https://github.com/rustic-ai/codeprism/blob/main/LICENSE-MIT',
156179
},
180+
{
181+
label: '🏆 Sponsors',
182+
to: '/docs/Sponsors',
183+
},
157184
],
158185
},
159186
],
160-
copyright: `Copyright © ${new Date().getFullYear()} CodePrism. Built with Docusaurus.`,
187+
copyright: `Copyright © ${new Date().getFullYear()} CodePrism. Sponsored by <a href="https://dragonscale.ai" target="_blank" rel="noopener noreferrer">Dragonscale Industries Inc</a>. Built with Docusaurus.`,
161188
},
162189
prism: {
163190
theme: prismThemes.github,

0 commit comments

Comments
 (0)