Marketing Website
This commit is contained in:
42
frontend/src/marketing/data/navLinks.ts
Normal file
42
frontend/src/marketing/data/navLinks.ts
Normal 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" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user