"use client"; import Link from "next/link"; import { Container } from "./Container"; import { NavLink } from "./NavLink"; import { Logo } from "./shared/Logo"; const footerSections = [ { title: "Product", ariaLabel: "Product and features", links: [ { href: "/", label: "Home" }, { href: "/#features", label: "Features" }, { href: "/pricing", label: "Pricing" }, { href: "/features/application-deployment-platform", label: "Application Deployment Platform", }, { href: "/features/database-management-tool", label: "Databases", }, { href: "/deploy-ai", label: "Deploy AI" }, { href: "/self-hosted-paas", label: "Self-Hosted PaaS" }, { href: "/enterprise", label: "Enterprise" }, { href: "/contact", label: "Contact" }, ], }, { title: "Enterprise Features", ariaLabel: "Enterprise features", links: [ { href: "/features/role-based-access-control", label: "RBAC", }, { href: "/features/single-sign-on", label: "SSO", }, { href: "/features/audit-logs", label: "Audit Logs", }, { href: "/features/white-labeling", label: "White Labeling", }, ], }, { title: "Compare & Learn", ariaLabel: "Comparisons and guides", links: [ { href: "/dokploy-vs-coolify", label: "Dokploy vs. Coolify", }, { href: "/dokploy-vs-portainer", label: "Dokploy vs. Portainer", }, { href: "/dokploy-vs-caprover", label: "Dokploy vs. CapRover", }, { href: "/dokploy-vs-dokku", label: "Dokploy vs. Dokku", }, { href: "/blog", label: "Blog" }, { href: "https://docs.dokploy.com/docs/core", label: "Documentation", external: true, }, ], }, { title: "Legal", ariaLabel: "Legal and policies", links: [ { href: "/terms-of-service", label: "Terms of Service" }, { href: "/privacy", label: "Privacy Policy" }, ], }, ] as const; export function Footer() { return ( ); }