Marketing Website

This commit is contained in:
Desktop
2025-11-13 16:51:48 +05:00
parent 224e32230c
commit 86f6886a13
27 changed files with 2149 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
export interface NavLinkItem {
name: string;
path: string;
}
export const primaryNav: NavLinkItem[] = [
{ name: "Product", path: "/product" },
{ name: "Solutions", path: "/solutions" },
{ name: "Pricing", path: "/pricing" },
{ name: "Tour", path: "/tour" },
{ name: "Resources", path: "/resources" },
{ name: "Case Studies", path: "/case-studies" },
{ name: "Partners", path: "/partners" },
];
export const footerNavGroups: { title: string; links: NavLinkItem[] }[] = [
{
title: "Platform",
links: [
{ name: "Planner", path: "/product#planner" },
{ name: "Writer", path: "/product#writer" },
{ name: "Automation", path: "/product#automation" },
],
},
{
title: "Company",
links: [
{ name: "Case Studies", path: "/case-studies" },
{ name: "Partners", path: "/partners" },
{ name: "Contact", path: "/contact" },
],
},
{
title: "Resources",
links: [
{ name: "Help Center", path: "/resources#help" },
{ name: "Documentation", path: "/resources#docs" },
{ name: "Partner Program", path: "/partners" },
],
},
];