diff --git a/apps/apollo-vertex/app/shadcn-components/badge/page.mdx b/apps/apollo-vertex/app/shadcn-components/badge/page.mdx
index 46ad2b32f..83dc51153 100644
--- a/apps/apollo-vertex/app/shadcn-components/badge/page.mdx
+++ b/apps/apollo-vertex/app/shadcn-components/badge/page.mdx
@@ -9,6 +9,7 @@ Displays a badge or a component that looks like a badge.
Secondary
Destructive
Outline
+ Funtimes
## Installation
@@ -28,4 +29,5 @@ import { Badge } from "@/components/ui/badge"
Secondary
Destructive
Outline
+Funtimes
```
diff --git a/apps/apollo-vertex/next-env.d.ts b/apps/apollo-vertex/next-env.d.ts
index 9edff1c7c..c4b7818fb 100644
--- a/apps/apollo-vertex/next-env.d.ts
+++ b/apps/apollo-vertex/next-env.d.ts
@@ -1,6 +1,6 @@
///
///
-import "./.next/types/routes.d.ts";
+import "./.next/dev/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/apps/apollo-vertex/registry/badge/badge.tsx b/apps/apollo-vertex/registry/badge/badge.tsx
index 299a98c93..95218dca8 100644
--- a/apps/apollo-vertex/registry/badge/badge.tsx
+++ b/apps/apollo-vertex/registry/badge/badge.tsx
@@ -17,6 +17,8 @@ const badgeVariants = cva(
"border-transparent bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
outline:
"text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
+ funtimes:
+ "border-transparent bg-purple-500 text-white [a&]:hover:bg-purple-600 dark:bg-purple-600 dark:[a&]:hover:bg-purple-700",
},
},
defaultVariants: {