Skip to content

Commit 2e2b68b

Browse files
committed
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.
1 parent 4fd95e8 commit 2e2b68b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

apps/website/app/enterprise/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { EnterpriseLanding } from "@/components/EnterpriseLanding";
22
import type { Metadata } from "next";
33

44
export const metadata: Metadata = {
5-
title: "Enterprise - Deploy Anywhere, Without Compromise",
5+
title: "Dokploy Enterprise | Secure, Flexible App Deployment",
66
description:
7-
"Scale with confidence. Deploy on-premises or in the cloud with enterprise security, compliance, and support built for organizations that demand the best.",
7+
"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.",
88
};
99

1010
export default function EnterprisePage() {

apps/website/app/pricing/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { Pricing } from "@/components/pricing";
22
import type { Metadata } from "next";
33

44
export const metadata: Metadata = {
5-
title: "Pricing",
5+
title: "Dokploy Pricing—Simple, Affordable Pricing. For Your Team",
66
description:
7-
"Simple, affordable pricing for Dokploy. Choose the plan that fits your needs.",
7+
"Deploy and manage apps with Dokploy. Compare Dokploy's Hobby, Startup, and Enterprise plans to find the right fit for your team.",
88
};
99

1010
export default function PricingPage() {

apps/website/components/ui/navigation-menu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const NavigationMenuList = React.forwardRef<
2929
<NavigationMenuPrimitive.List
3030
ref={ref}
3131
className={cn(
32-
"group flex flex-1 list-none items-center justify-center space-x-1",
32+
"group flex flex-1 list-none items-center justify-center space-x-2",
3333
className
3434
)}
3535
{...props}
@@ -50,7 +50,7 @@ const NavigationMenuItem = React.forwardRef<
5050
NavigationMenuItem.displayName = NavigationMenuPrimitive.Item.displayName
5151

5252
const navigationMenuTriggerStyle = cva(
53-
"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"
53+
"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"
5454
)
5555

5656
const NavigationMenuTrigger = React.forwardRef<

0 commit comments

Comments
 (0)