diff --git a/apps/docs/biome.json b/apps/docs/biome.json deleted file mode 100644 index a77418cf..00000000 --- a/apps/docs/biome.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", - "vcs": { - "enabled": false, - "clientKind": "git", - "useIgnoreFile": false - }, - "files": { - "ignoreUnknown": false, - "ignore": [] - }, - "formatter": { - "enabled": true, - "indentStyle": "space" - }, - "organizeImports": { - "enabled": true - }, - "linter": { - "enabled": true, - "rules": { - "recommended": true - } - }, - "javascript": { - "formatter": { - "quoteStyle": "double" - } - } -} - diff --git a/apps/docs/next.config.ts b/apps/docs/next.config.ts deleted file mode 100644 index 92730c45..00000000 --- a/apps/docs/next.config.ts +++ /dev/null @@ -1,13 +0,0 @@ -import type { NextConfig } from "next"; - -const nextConfig: NextConfig = { - transpilePackages: [ - "@katanemo/ui", - "@katanemo/shared-styles", - "@katanemo/tailwind-config", - "@katanemo/tsconfig", - ], -}; - -export default nextConfig; - diff --git a/apps/docs/package.json b/apps/docs/package.json deleted file mode 100644 index 0764b9f3..00000000 --- a/apps/docs/package.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "@katanemo/docs", - "version": "0.1.0", - "private": true, - "scripts": { - "dev": "next dev -p 3001", - "build": "next build", - "start": "next start -p 3001", - "lint": "biome check", - "format": "biome format --write", - "typecheck": "tsc --noEmit", - "clean": "rm -rf .next" - }, - "dependencies": { - "@katanemo/shared-styles": "*", - "@katanemo/ui": "*", - "next": "16.0.0", - "react": "19.2.0", - "react-dom": "19.2.0" - }, - "devDependencies": { - "@katanemo/tailwind-config": "*", - "@katanemo/tsconfig": "*", - "@biomejs/biome": "2.2.0", - "@tailwindcss/postcss": "^4", - "@types/node": "^20", - "@types/react": "^19", - "@types/react-dom": "^19", - "tailwindcss": "^4", - "tw-animate-css": "^1.4.0", - "typescript": "^5" - } -} - diff --git a/apps/docs/postcss.config.mjs b/apps/docs/postcss.config.mjs deleted file mode 100644 index 18a3b9d8..00000000 --- a/apps/docs/postcss.config.mjs +++ /dev/null @@ -1,8 +0,0 @@ -const config = { - plugins: { - "@tailwindcss/postcss": {}, - }, -}; - -export default config; - diff --git a/apps/docs/public/LogoOutline.svg b/apps/docs/public/LogoOutline.svg deleted file mode 100644 index 3e10f84c..00000000 --- a/apps/docs/public/LogoOutline.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/apps/docs/public/Logomark.svg b/apps/docs/public/Logomark.svg deleted file mode 100644 index 6d8e13fa..00000000 --- a/apps/docs/public/Logomark.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/apps/docs/public/fonts/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf b/apps/docs/public/fonts/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf deleted file mode 100644 index 6232aaa8..00000000 Binary files a/apps/docs/public/fonts/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf and /dev/null differ diff --git a/apps/docs/public/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf b/apps/docs/public/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf deleted file mode 100644 index 9add8756..00000000 Binary files a/apps/docs/public/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf and /dev/null differ diff --git a/apps/docs/public/fonts/JetBrainsMono-Medium.woff2 b/apps/docs/public/fonts/JetBrainsMono-Medium.woff2 deleted file mode 100644 index 669d04cd..00000000 Binary files a/apps/docs/public/fonts/JetBrainsMono-Medium.woff2 and /dev/null differ diff --git a/apps/docs/public/fonts/JetBrainsMono-Regular.woff2 b/apps/docs/public/fonts/JetBrainsMono-Regular.woff2 deleted file mode 100644 index 40da4276..00000000 Binary files a/apps/docs/public/fonts/JetBrainsMono-Regular.woff2 and /dev/null differ diff --git a/apps/docs/public/fonts/jetbrains-mono-bold.woff2 b/apps/docs/public/fonts/jetbrains-mono-bold.woff2 deleted file mode 100644 index 4917f434..00000000 Binary files a/apps/docs/public/fonts/jetbrains-mono-bold.woff2 and /dev/null differ diff --git a/apps/docs/src/app/globals.css b/apps/docs/src/app/globals.css deleted file mode 100644 index 959d6e40..00000000 --- a/apps/docs/src/app/globals.css +++ /dev/null @@ -1,3 +0,0 @@ -/* This file is kept for backwards compatibility but styles are imported from @katanemo/shared-styles */ -@import "@katanemo/shared-styles/globals.css"; - diff --git a/apps/docs/src/app/layout.tsx b/apps/docs/src/app/layout.tsx deleted file mode 100644 index 29d83216..00000000 --- a/apps/docs/src/app/layout.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import type { Metadata } from "next"; -import "./globals.css"; -import "@katanemo/shared-styles/globals.css"; -import { Navbar, Footer } from "@katanemo/ui"; - -export const metadata: Metadata = { - title: "Plano Documentation", - description: "Documentation for Plano - The AI-native network for agents", -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - -
- -
{children}
-
- - - ); -} - diff --git a/apps/docs/src/app/page.tsx b/apps/docs/src/app/page.tsx deleted file mode 100644 index 1c061217..00000000 --- a/apps/docs/src/app/page.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from "react"; - -export default function DocsPage() { - return ( -
-
-

- Documentation -

-

- Coming soon... -

-
-
- ); -} - diff --git a/apps/docs/tsconfig.json b/apps/docs/tsconfig.json deleted file mode 100644 index 21b3e921..00000000 --- a/apps/docs/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "extends": "@katanemo/tsconfig/nextjs.json", - "compilerOptions": { - "jsx": "react-jsx", - "paths": { - "@/*": ["./src/*"], - "@katanemo/ui": ["../../packages/ui/src"] - } - }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - ".next/types/**/*.ts", - ".next/dev/types/**/*.ts", - "**/*.mts" - ], - "exclude": ["node_modules"] -} -