diff --git a/apps/docs/next-env.d.ts b/apps/docs/next-env.d.ts
index 4f11a03..40c3d68 100644
--- a/apps/docs/next-env.d.ts
+++ b/apps/docs/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
+// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
diff --git a/apps/docs/next.config.mjs b/apps/docs/next.config.mjs
index ec5ac84..d09406a 100644
--- a/apps/docs/next.config.mjs
+++ b/apps/docs/next.config.mjs
@@ -1,11 +1,10 @@
-import { createMDX } from 'fumadocs-mdx/next';
-
+import { createMDX } from "fumadocs-mdx/next";
+
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
- transpilePackages: ["@codegen/ui"],
};
const withMDX = createMDX();
-
-export default withMDX(config);
\ No newline at end of file
+
+export default withMDX(config);
diff --git a/apps/docs/package.json b/apps/docs/package.json
index d7f74ef..de2fbec 100644
--- a/apps/docs/package.json
+++ b/apps/docs/package.json
@@ -11,12 +11,25 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
+ "@radix-ui/react-dropdown-menu": "^2.1.4",
+ "@radix-ui/react-icons": "^1.3.0",
+ "@radix-ui/react-slot": "^1.1.1",
+ "@radix-ui/react-tooltip": "^1.1.6",
+ "@tabler/icons-react": "^3.21.0",
+ "@tsparticles/engine": "^3.7.1",
+ "@tsparticles/react": "^3.0.0",
+ "@tsparticles/slim": "^3.7.1",
"@types/mdx": "^2.0.13",
"@vercel/og": "^0.6.3",
- "fumadocs-core": "^13.4.10",
- "fumadocs-docgen": "^1.2.0",
+ "class-variance-authority": "^0.7.0",
+ "clsx": "^2.1.1",
+ "cobe": "^0.6.3",
+ "framer-motion": "^11.11.11",
+ "fumadocs-core": "14.7.3",
+ "fumadocs-docgen": "1.3.4",
"fumadocs-mdx": "^10.0.2",
"fumadocs-ui": "^13.4.10",
+ "lucide-react": "^0.471.1",
"next": "^14.2.3",
"next-themes": "^0.3.0",
"nextra": "^2.13.4",
@@ -24,13 +37,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.33.5",
- "@radix-ui/react-icons": "^1.3.0",
- "@tabler/icons-react": "^3.21.0",
- "class-variance-authority": "^0.7.0",
- "clsx": "^2.1.1",
- "cobe": "^0.6.3",
- "framer-motion": "^11.11.11",
- "tailwind-merge": "^2.5.2",
+ "tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
diff --git a/apps/docs/src/app/globals.css b/apps/docs/src/app/globals.css
index 5ca3093..24fb5f2 100644
--- a/apps/docs/src/app/globals.css
+++ b/apps/docs/src/app/globals.css
@@ -4,7 +4,7 @@
/* Color Rose */
-@layer base {
+/* @layer base {
:root {
--background: 0 0% 100%;
--foreground: 20 14.3% 4.1%;
@@ -12,7 +12,7 @@
--card-foreground: 20 14.3% 4.1%;
--popover: 0 0% 100%;
--popover-foreground: 20 14.3% 4.1%;
- --primary: 24.6 95% 53.1%;
+ --primary: 230 90% 72%;
--primary-foreground: 60 9.1% 97.8%;
--secondary: 60 4.8% 95.9%;
--secondary-foreground: 24 9.8% 10%;
@@ -24,7 +24,7 @@
--destructive-foreground: 60 9.1% 97.8%;
--border: 20 5.9% 90%;
--input: 20 5.9% 90%;
- --ring: 24.6 95% 53.1%;
+ --ring: 230 90% 72%;
--radius: 0.5rem;
--chart-1: 12 76% 61%;
--chart-2: 173 58% 39%;
@@ -40,7 +40,7 @@
--card-foreground: 60 9.1% 97.8%;
--popover: 20 14.3% 4.1%;
--popover-foreground: 60 9.1% 97.8%;
- --primary: 20.5 90.2% 48.2%;
+ --primary: 250 70% 94%;
--primary-foreground: 60 9.1% 97.8%;
--secondary: 12 6.5% 15.1%;
--secondary-foreground: 60 9.1% 97.8%;
@@ -52,14 +52,14 @@
--destructive-foreground: 60 9.1% 97.8%;
--border: 12 6.5% 15.1%;
--input: 12 6.5% 15.1%;
- --ring: 20.5 90.2% 48.2%;
+ --ring: 250 70% 94%;
--chart-1: 220 70% 50%;
--chart-2: 160 60% 45%;
--chart-3: 30 80% 55%;
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%;
}
-}
+} */
/* Color Violet */
@@ -121,7 +121,7 @@
} */
/* Color Zinc */
-/*
+
@layer base {
:root {
--background: 0 0% 100%;
@@ -177,7 +177,7 @@
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%;
}
-} */
+}
@layer base {
* {
diff --git a/apps/docs/src/app/layout.tsx b/apps/docs/src/app/layout.tsx
index 7db2d1f..2e21097 100644
--- a/apps/docs/src/app/layout.tsx
+++ b/apps/docs/src/app/layout.tsx
@@ -26,10 +26,12 @@ export default function RootLayout({
defaultTheme: "dark",
}}
>
- CodeGen Docs are under development and will be available soon
+
+ CodeGen Docs are under development and will be available soon
+
{children}
-