diff --git a/apps/dashboard/src/@/components/TextDivider.tsx b/apps/dashboard/src/@/components/TextDivider.tsx
new file mode 100644
index 00000000000..7a0730f23fa
--- /dev/null
+++ b/apps/dashboard/src/@/components/TextDivider.tsx
@@ -0,0 +1,19 @@
+import { cn } from "@/lib/utils";
+
+export function TextDivider(props: {
+ text: string;
+ className?: string;
+}) {
+ return (
+
+
+ {props.text}
+
+
+ );
+}
diff --git a/apps/dashboard/src/app/login/onboarding/ChoosePlan.tsx b/apps/dashboard/src/app/login/onboarding/ChoosePlan.tsx
index d32c12fd4d6..82e00dbc8b1 100644
--- a/apps/dashboard/src/app/login/onboarding/ChoosePlan.tsx
+++ b/apps/dashboard/src/app/login/onboarding/ChoosePlan.tsx
@@ -1,8 +1,8 @@
"use client";
+import { TextDivider } from "@/components/TextDivider";
import { PricingCard } from "@/components/blocks/pricing-card";
import { Button } from "@/components/ui/button";
-import { ArrowRightIcon } from "lucide-react";
import { TitleAndDescription } from "./Title";
export function OnboardingChoosePlan(props: {
@@ -20,7 +20,7 @@ export function OnboardingChoosePlan(props: {
-
+
-
+
-
-
-
+
);
}