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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user