cryptorugmunch-com/docusaurus.config.ts
cryptorugmunch 2512a730ec feat: Ghost blog at blog.cryptorugmunch.com, fix /build and /blog crashes
- Ghost container deployed on Talos for corporate blog
- blog.cryptorugmunch.com DNS + nginx configured
- Removed Docusaurus built-in blog (now links to Ghost)
- Fixed /build page crash (removed undefined infra reference)
- Color palette sampled from actual logos: deep indigo-black + neon green
- Premium design: glass navbar, glow shadows, bold headers
2026-07-09 20:39:45 +07:00

143 lines
4.9 KiB
TypeScript

import { themes as prismThemes } from 'prism-react-renderer';
import type { Config } from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
const config: Config = {
title: 'Rug Munch Media',
tagline: 'Protecting retail investors. Open-source Web3 + AI. Wyoming-built.',
favicon: 'img/favicon.ico',
future: { v4: true },
url: 'https://cryptorugmunch.com',
baseUrl: '/',
organizationName: 'RugMunchMedia',
projectName: 'cryptorugmunch-com',
onBrokenLinks: 'throw',
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
{
docs: false,
blog: false,
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
themeConfig: {
image: 'img/og-image.png',
colorMode: {
defaultMode: 'dark',
disableSwitch: true,
respectPrefersColorScheme: false,
},
metadata: [
{ name: 'description', content: 'Rug Munch Media LLC — Wyoming-built open-source AI + Web3 infrastructure. Protecting retail investors with Rug Munch Intelligence, DegenFeed, Pry, and WalletPress.' },
{ name: 'keywords', content: 'crypto security, token scanner, rug pull detection, rug munch, rug munch media, web3, defi, open source, wyoming, degenfeed, wallet labeling, on-chain forensics' },
{ property: 'og:type', content: 'website' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:site', content: '@cryptorugmunch' },
{ name: 'twitter:creator', content: '@cryptorugmunch' },
],
navbar: {
hideOnScroll: false,
style: 'dark',
title: undefined,
logo: {
alt: 'Rug Munch Media',
src: 'img/logo.png',
srcDark: 'img/logo.png',
width: 200,
height: 40,
},
items: [
{ to: '/about', label: 'About', position: 'left' },
{
type: 'dropdown',
label: 'Products',
position: 'left',
items: [
{ to: '/products/rmi', label: 'Rug Munch Intelligence' },
{ to: '/products/degenfeed', label: 'DegenFeed' },
{ to: '/products/pry', label: 'Pry' },
{ to: '/products/walletpress', label: 'WalletPress' },
{ to: '/products/crm', label: '$CRM v2' },
],
},
{ to: '/build', label: 'Build With Us', position: 'left' },
{ href: 'https://blog.cryptorugmunch.com', label: 'Blog', position: 'left' },
{
href: 'https://git.rugmunch.io/RugMunchMedia',
label: 'Our Code',
position: 'right',
className: 'navbar-forgejo-link',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Products',
items: [
{ label: 'Rug Munch Intelligence', to: '/products/rmi' },
{ label: 'DegenFeed', to: '/products/degenfeed' },
{ label: 'Pry', to: '/products/pry' },
{ label: 'WalletPress', to: '/products/walletpress' },
{ label: '$CRM v2', to: '/products/crm' },
],
},
{
title: 'Company',
items: [
{ label: 'About', to: '/about' },
{ label: 'Blog', href: 'https://blog.cryptorugmunch.com' },
{ label: 'Community', to: '/community' },
{ label: 'Security', to: '/security' },
{ label: 'Terms of Service', to: '/terms' },
{ label: 'Privacy Policy', to: '/privacy' },
{ label: 'Legal', to: '/legal' },
],
},
{
title: 'Code',
items: [
{ label: 'Our Git (primary)', href: 'https://git.rugmunch.io/RugMunchMedia' },
{ label: 'GitLab (mirror)', href: 'https://gitlab.com/cryptorugmuncher' },
{ label: 'Codeberg (mirror)', href: 'https://codeberg.org/cryptorugmunch' },
{ label: 'Radicle (P2P)', href: 'https://radicle.network/nodes/iris.radicle.network/rad:z4WHF6sDhmfqQvmigQSPYezNgy9c6' },
],
},
{
title: 'Connect',
items: [
{ label: 'X / Twitter', href: 'https://x.com/cryptorugmunch' },
{ label: 'Telegram', href: 'https://t.me/rugmunchbot' },
{ label: 'Farcaster', href: 'https://warpcast.com/cryptorugmunch' },
{ label: 'Nostr', href: 'https://primal.net/p/npub1cryptorugmunch' },
],
},
],
copyright: `&copy; ${new Date().getFullYear()} Rug Munch Media LLC. All rights reserved. Cheyenne, Wyoming.<br/>Open-source software licensed under AGPL-3.0 or MIT. <a href="/terms" style="color:#FFD600">Terms</a> · <a href="/privacy" style="color:#FFD600">Privacy</a> · <a href="/legal" style="color:#FFD600">Legal</a>`,
},
prism: {
theme: prismThemes.dracula,
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
};
export default config;