feat: update metadata for Enterprise and Pricing pages to enhance clarity and SEO

- Revised titles and descriptions for the Enterprise and Pricing pages to better reflect offerings and improve search engine optimization.
- Adjusted styling in the navigation menu for a more consistent user interface.
This commit is contained in:
Mauricio Siu
2026-03-10 11:59:18 -06:00
parent 4fd95e85c8
commit 2e2b68b967
3 changed files with 6 additions and 6 deletions

View File

@@ -2,9 +2,9 @@ import { EnterpriseLanding } from "@/components/EnterpriseLanding";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Enterprise - Deploy Anywhere, Without Compromise",
title: "Dokploy Enterprise | Secure, Flexible App Deployment",
description:
"Scale with confidence. Deploy on-premises or in the cloud with enterprise security, compliance, and support built for organizations that demand the best.",
"Deploy on-premises or in the cloud with enterprise-grade security, SSO, audit logs, fine-grained RBAC, and dedicated SLAs. Scale on your own terms.",
};
export default function EnterprisePage() {

View File

@@ -2,9 +2,9 @@ import { Pricing } from "@/components/pricing";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Pricing",
title: "Dokploy Pricing—Simple, Affordable Pricing. For Your Team",
description:
"Simple, affordable pricing for Dokploy. Choose the plan that fits your needs.",
"Deploy and manage apps with Dokploy. Compare Dokploy's Hobby, Startup, and Enterprise plans to find the right fit for your team.",
};
export default function PricingPage() {

View File

@@ -29,7 +29,7 @@ const NavigationMenuList = React.forwardRef<
<NavigationMenuPrimitive.List
ref={ref}
className={cn(
"group flex flex-1 list-none items-center justify-center space-x-1",
"group flex flex-1 list-none items-center justify-center space-x-2",
className
)}
{...props}
@@ -50,7 +50,7 @@ const NavigationMenuItem = React.forwardRef<
NavigationMenuItem.displayName = NavigationMenuPrimitive.Item.displayName
const navigationMenuTriggerStyle = cva(
"group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
"group inline-flex h-8 w-max items-center justify-center rounded-md bg-background px-3.5 py-1.5 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
)
const NavigationMenuTrigger = React.forwardRef<