marketing-nav.ts 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. export interface MarketingLink {
  2. label: string;
  3. href: string;
  4. }
  5. export const MARKETING_PRIMARY_NAV: MarketingLink[] = [
  6. { label: "How it works", href: "/how-it-works" },
  7. { label: "Business", href: "/business" },
  8. { label: "Developers", href: "/developers" },
  9. { label: "Security", href: "/security" },
  10. { label: "Roadmap", href: "/roadmap" },
  11. { label: "Blog", href: "/blog" },
  12. ];
  13. export const MARKETING_FOOTER_PRODUCT: MarketingLink[] = [
  14. { label: "How it works", href: "/how-it-works" },
  15. { label: "Security", href: "/security" },
  16. { label: "Roadmap", href: "/roadmap" },
  17. { label: "Open portal", href: "/portal" },
  18. ];
  19. export const MARKETING_FOOTER_COMPANY: MarketingLink[] = [
  20. { label: "About", href: "/about" },
  21. { label: "Blog", href: "/blog" },
  22. { label: "Contact", href: "/contact" },
  23. { label: "For business", href: "/business" },
  24. { label: "For developers", href: "/developers" },
  25. ];
  26. export const MARKETING_FOOTER_LEGAL: MarketingLink[] = [
  27. { label: "Privacy", href: "/privacy" },
  28. { label: "Terms", href: "/terms" },
  29. { label: "Cookies", href: "/cookies" },
  30. { label: "Trust", href: "/trust" },
  31. { label: "Subprocessors", href: "/subprocessors" },
  32. ];