// @ts-check // `@type` JSDoc annotations allow editor autocompletion and type checking // (when paired with `@ts-check`). // There are various equivalent ways to declare your Docusaurus config. // See: https://docusaurus.io/docs/api/docusaurus-config import {themes as prismThemes} from 'prism-react-renderer'; // This runs in Node.js - Don't use client-side code here (browser APIs, JSX...) /** @type {import('@docusaurus/types').Config} */ const config = { title: 'Cofounder', tagline: 'ai-generated apps , full stack + generative UI', favicon: 'img/favicon.ico', // Set the production url of your site here url: 'https://raidendotai.github.io', // Set the // pathname under which your site is served // For GitHub pages deployment, it is often '//' baseUrl: '/cofounder', // GitHub pages deployment config. // If you aren't using GitHub pages, you don't need these. organizationName: 'raidendotai', // Usually your GitHub org/user name. projectName: 'cofounder', // Usually your repo name. trailingSlash: false, onBrokenLinks: 'throw', onBrokenMarkdownLinks: 'warn', // Even if you don't use internationalization, you can use this field to set // useful metadata like html lang. For example, if your site is Chinese, you // may want to replace "en" with "zh-Hans". i18n: { defaultLocale: 'en', locales: ['en'], }, presets: [ [ 'classic', /** @type {import('@docusaurus/preset-classic').Options} */ ({ docs: { sidebarPath: './sidebars.js', editUrl: 'https://github.com/raidendotai/cofounder/blob/main/docs', }, theme: { customCss: './src/css/custom.css', }, }), ], ], themeConfig: /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ ({ // Replace with your project's social card image: 'img/logo.png', navbar: { title: 'Cofounder', logo: { alt: 'Cofounder logo', src: 'img/logo.png', }, items: [ { type: 'docSidebar', sidebarId: 'docsSidebar', position: 'left', label: 'Docs', }, { href: 'https://x.com/n_raidenai', label: '@n_raidenai', position: 'right', }, { href: 'https://cofounder.openinterface.ai', label: 'Website', position: 'right', }, { href: 'https://github.com/raidendotai/cofounder', label: 'GitHub', position: 'right', }, ], }, footer: { style: 'dark', links: [ ], copyright: `Copyright © ${new Date().getFullYear()} Cofounder. Built with Docusaurus.`, }, prism: { theme: prismThemes.github, darkTheme: prismThemes.dracula, }, }), }; export default config;