feat(www): introduce blog

This commit is contained in:
Musa 2025-11-26 13:51:06 -08:00
parent 8b0f2b94d8
commit 98fb8cb2fd
25 changed files with 16178 additions and 26 deletions

View file

@ -8,6 +8,11 @@
},
"files": [
"globals.css"
]
],
"scripts": {
"build": "echo 'Skipping build'",
"lint": "biome check",
"typecheck": "tsc --noEmit"
}
}

View file

@ -23,6 +23,7 @@
}
},
"scripts": {
"build": "echo 'Skipping build'",
"lint": "biome check",
"typecheck": "tsc --noEmit"
},

View file

@ -9,11 +9,10 @@ import { motion, AnimatePresence } from "framer-motion";
import { X, Menu } from "lucide-react";
const navItems = [
{ href: "/start", label: "start locally" },
{ href: "/docs", label: "docs" },
{ href: "https://docs.plano.katanemo.com/getting-started/installation", label: "start locally" },
{ href: "https://docs.plano.katanemo.com", label: "docs" },
{ href: "/model-research", label: "models research" },
{ href: "/blog", label: "blog" },
{ href: "/why", label: "why plano?" },
];
export function Navbar() {