From b992d963bf49bb62849d470d43339601d123d3dc Mon Sep 17 00:00:00 2001 From: kamilbenkirane Date: Thu, 27 Nov 2025 14:08:51 +0100 Subject: [PATCH] fix: dark mode icons, hydration warning, and route conflict --- content/docs/index.mdx | 8 ++++---- content/docs/providers/anthropic.mdx | 2 +- content/docs/providers/elevenlabs.mdx | 2 +- content/docs/providers/openai.mdx | 2 +- src/app/(home)/layout.tsx | 6 ------ src/app/(home)/page.tsx | 16 ---------------- src/app/layout.tsx | 2 +- 7 files changed, 8 insertions(+), 30 deletions(-) delete mode 100644 src/app/(home)/layout.tsx delete mode 100644 src/app/(home)/page.tsx diff --git a/content/docs/index.mdx b/content/docs/index.mdx index 918210d..c70cd05 100644 --- a/content/docs/index.mdx +++ b/content/docs/index.mdx @@ -31,11 +31,11 @@ Celeste is a unified interface for multi-modal AI. It provides a consistent, typ Google
- Anthropic + Anthropic Anthropic
- OpenAI + OpenAI OpenAI
@@ -47,11 +47,11 @@ Celeste is a unified interface for multi-modal AI. It provides a consistent, typ Cohere
- xAI + xAI xAI
- ElevenLabs + ElevenLabs ElevenLabs
diff --git a/content/docs/providers/anthropic.mdx b/content/docs/providers/anthropic.mdx index 9ec5dcd..ac728cb 100644 --- a/content/docs/providers/anthropic.mdx +++ b/content/docs/providers/anthropic.mdx @@ -3,7 +3,7 @@ title: Anthropic description: Documentation for the Anthropic provider. --- -Anthropic +Anthropic Celeste supports Anthropic's Claude models for text generation. diff --git a/content/docs/providers/elevenlabs.mdx b/content/docs/providers/elevenlabs.mdx index c355e49..8df4801 100644 --- a/content/docs/providers/elevenlabs.mdx +++ b/content/docs/providers/elevenlabs.mdx @@ -3,7 +3,7 @@ title: ElevenLabs description: Documentation for the ElevenLabs provider. --- -ElevenLabs +ElevenLabs Celeste supports ElevenLabs for high-quality speech generation. diff --git a/content/docs/providers/openai.mdx b/content/docs/providers/openai.mdx index 56c482f..6df9c55 100644 --- a/content/docs/providers/openai.mdx +++ b/content/docs/providers/openai.mdx @@ -3,7 +3,7 @@ title: OpenAI description: Documentation for the OpenAI provider. --- -OpenAI +OpenAI Celeste supports OpenAI's full suite of models, including GPT-4o for text, DALL-E 3 for images, and TTS for speech. diff --git a/src/app/(home)/layout.tsx b/src/app/(home)/layout.tsx deleted file mode 100644 index c16b056..0000000 --- a/src/app/(home)/layout.tsx +++ /dev/null @@ -1,6 +0,0 @@ -import { HomeLayout } from "fumadocs-ui/layouts/home"; -import { baseOptions } from "@/lib/layout.shared"; - -export default function Layout({ children }: LayoutProps<"/">) { - return {children}; -} diff --git a/src/app/(home)/page.tsx b/src/app/(home)/page.tsx deleted file mode 100644 index 8412053..0000000 --- a/src/app/(home)/page.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import Link from "next/link"; - -export default function HomePage() { - return ( -
-

Hello World

-

- You can open{" "} - - /docs - {" "} - and see the documentation. -

-
- ); -} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6f4841f..3dca9e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -26,7 +26,7 @@ export default function Layout({ children }: LayoutProps<"/">) { className={`${spaceGrotesk.variable} ${spaceMono.variable}`} suppressHydrationWarning > - + {children}