feat(marketing): add features step to wizard

This commit replaces the placeholder "Preferences" step in the marketing page's multi-step process with a new, functional "Features" step.

The `FeaturesStep` component is now imported and rendered as the third step, allowing users to add features. The step's title and description have been updated to reflect this change.
This commit is contained in:
AmirReza Jamali
2025-11-04 17:04:08 +03:30
parent 634de17f23
commit 90ca4054d8
3 changed files with 158 additions and 3 deletions
+4 -3
View File
@@ -5,6 +5,7 @@ import { BreadcrumbItem } from "@/types/shared";
import { useState } from "react";
import { ShowcaseSection } from "../../components/Layouts/showcase-section";
import ChartStep from "./_components/ChartStep";
import FeaturesStep from "./_components/FeaturesStep";
import HeroStep from "./_components/HeroStep";
const Marketing = () => {
@@ -31,9 +32,9 @@ const Marketing = () => {
content: <ChartStep />,
},
{
title: "Preferences",
description: "Choose preferences",
content: <div>step 3</div>,
title: "Features",
description: "Add features",
content: <FeaturesStep />,
},
{
title: "Review",