From c5e59e5b77055432b9bb29c4ccbde7211656f1e4 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 27 Sep 2025 20:20:26 +0000 Subject: [PATCH] Add Get Started page cgen-0df4b16c9e8749f7b232e8c20fe010fd --- client/pages/GetStarted.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 client/pages/GetStarted.tsx diff --git a/client/pages/GetStarted.tsx b/client/pages/GetStarted.tsx new file mode 100644 index 00000000..eb1723da --- /dev/null +++ b/client/pages/GetStarted.tsx @@ -0,0 +1,23 @@ +import Layout from "@/components/Layout"; +import { Link } from "react-router-dom"; + +export default function GetStarted() { + return ( + +
+
+

Get Started

+
    +
  1. Create your account or sign in.
  2. +
  3. Complete onboarding to tailor your experience.
  4. +
  5. Explore your personalized dashboard and projects.
  6. +
+
+ Start Onboarding + Open Dashboard +
+
+
+
+ ); +}