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
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
config-file: .github/release-please-config.json
manifest-file: .github/.release-please-manifest.json

publish:
name: "Build & Publish"
Expand Down
9 changes: 9 additions & 0 deletions apps/docs/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
async redirects() {
return [
{
source: "/",
destination: "/docs",
permanent: true,
},
];
},
async rewrites() {
return [
{
Expand Down
3 changes: 0 additions & 3 deletions apps/docs/source.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// ABOUTME: Fumadocs MDX source configuration
// ABOUTME: Defines collections and MDX processing options

import { remarkMdxMermaid } from "fumadocs-core/mdx-plugins";
import {
defineConfig,
Expand Down
6 changes: 0 additions & 6 deletions apps/docs/src/app/(home)/layout.tsx

This file was deleted.

16 changes: 0 additions & 16 deletions apps/docs/src/app/(home)/page.tsx

This file was deleted.

38 changes: 38 additions & 0 deletions apps/docs/src/app/global.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
@import "tailwindcss";
@import "fumadocs-ui/css/neutral.css";
@import "fumadocs-ui/css/preset.css";

:root {
--color-fd-background: #fafafa;
--color-fd-foreground: #09090b;
--color-fd-muted: #f4f4f5;
--color-fd-muted-foreground: #71717a;
--color-fd-popover: #ffffff;
--color-fd-popover-foreground: #09090b;
--color-fd-card: #ffffff;
--color-fd-card-foreground: #09090b;
--color-fd-border: #e4e4e7;
--color-fd-primary: #16a34a;
--color-fd-primary-foreground: #ffffff;
--color-fd-secondary: #f4f4f5;
--color-fd-secondary-foreground: #09090b;
--color-fd-accent: rgba(22, 163, 74, 0.1);
--color-fd-accent-foreground: #16a34a;
--color-fd-ring: #22c55e;
}

.dark {
--color-fd-background: #000000;
--color-fd-foreground: #fafafa;
--color-fd-muted: rgba(255, 255, 255, 0.05);
--color-fd-muted-foreground: #71717a;
--color-fd-popover: #09090b;
--color-fd-popover-foreground: #fafafa;
--color-fd-card: rgba(255, 255, 255, 0.02);
--color-fd-card-foreground: #fafafa;
--color-fd-border: rgba(255, 255, 255, 0.1);
--color-fd-primary: #22c55e;
--color-fd-primary-foreground: #000000;
--color-fd-secondary: rgba(255, 255, 255, 0.05);
--color-fd-secondary-foreground: #fafafa;
--color-fd-accent: rgba(34, 197, 94, 0.15);
--color-fd-accent-foreground: #22c55e;
--color-fd-ring: #22c55e;
}
2 changes: 1 addition & 1 deletion apps/docs/src/lib/layout.shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
export function baseOptions(): BaseLayoutProps {
return {
nav: {
title: "My App",
title: "SEOX",
},
};
}
4 changes: 2 additions & 2 deletions apps/landing/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Navbar() {
</Link>
<div className='flex items-center gap-4'>
<Button asChild variant='ghost' size='sm' className='text-muted-foreground hover:text-foreground'>
<Link href='https://docs.seox.dev' target='_blank' rel='noopener noreferrer'>
<Link href='https://docs.seo-x.dev' target='_blank' rel='noopener noreferrer'>
Docs
<ExternalLink className='size-3 ml-1' />
</Link>
Expand Down Expand Up @@ -298,7 +298,7 @@ function Footer() {
<span>— SEO for Next.js</span>
</div>
<nav className='flex gap-6'>
<Link href='https://docs.seox.dev' className='hover:text-neon transition-colors'>
<Link href='https://docs.seo-x.dev' className='hover:text-neon transition-colors'>
Docs
</Link>
<Link href='https://www.npmjs.com/package/seox' className='hover:text-neon transition-colors'>
Expand Down