| 123456789101112131415161718192021222324252627282930313233343536 |
- export interface MarketingLink {
- label: string;
- href: string;
- }
- export const MARKETING_PRIMARY_NAV: MarketingLink[] = [
- { label: "How it works", href: "/how-it-works" },
- { label: "Business", href: "/business" },
- { label: "Developers", href: "/developers" },
- { label: "Security", href: "/security" },
- { label: "Roadmap", href: "/roadmap" },
- { label: "Blog", href: "/blog" },
- ];
- export const MARKETING_FOOTER_PRODUCT: MarketingLink[] = [
- { label: "How it works", href: "/how-it-works" },
- { label: "Security", href: "/security" },
- { label: "Roadmap", href: "/roadmap" },
- { label: "Open portal", href: "/portal" },
- ];
- export const MARKETING_FOOTER_COMPANY: MarketingLink[] = [
- { label: "About", href: "/about" },
- { label: "Blog", href: "/blog" },
- { label: "Contact", href: "/contact" },
- { label: "For business", href: "/business" },
- { label: "For developers", href: "/developers" },
- ];
- export const MARKETING_FOOTER_LEGAL: MarketingLink[] = [
- { label: "Privacy", href: "/privacy" },
- { label: "Terms", href: "/terms" },
- { label: "Cookies", href: "/cookies" },
- { label: "Trust", href: "/trust" },
- { label: "Subprocessors", href: "/subprocessors" },
- ];
|