mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 09:48:32 +00:00
28 lines
459 B
TypeScript
28 lines
459 B
TypeScript
import { MarketingConfig } from "types"
|
|
|
|
export const marketingConfig: MarketingConfig = {
|
|
mainNav: [
|
|
{
|
|
title: "Features",
|
|
href: "/features",
|
|
disabled: true,
|
|
},
|
|
{
|
|
title: "Pricing",
|
|
href: "/pricing",
|
|
},
|
|
{
|
|
title: "Blog",
|
|
href: "/blog",
|
|
},
|
|
{
|
|
title: "Documentation",
|
|
href: "/docs",
|
|
},
|
|
{
|
|
title: "Contact",
|
|
href: "/contact",
|
|
disabled: true,
|
|
},
|
|
],
|
|
}
|