import { Button } from "@/components/ui/button"; import type { Tour } from "nextstepjs"; import { FaDiscord } from "react-icons/fa6"; import { DISCORD_URL } from "./utils"; export const steps: Tour[] = [ { tour: "onboarding", steps: [ { icon: "👋", title: "Welcome to DeepSite!", content: ( <>

Let's take a quick tour to get you familiar with DeepSite's features.

You can always revisit this tour later from the Help menu.

), showControls: true, showSkip: true, }, { icon: "🐳", title: "Build websites with AI", content: ( <>

DeepSite leverages AI to help you create stunning websites effortlessly.

Ask questions, get design suggestions, and more!

), selector: "#tour-ask-ai-section", side: "top", showControls: true, showSkip: true, pointerPadding: 8, pointerRadius: 20, }, { icon: "🧠", title: "The Brains Behind It", content: ( <>

You can choose from a variety of AI models to power DeepSite's capabilities.

Experiment with different models to see which one fits your needs best!

), selector: "#tour-model-section", side: "top-left", showControls: true, showSkip: true, pointerPadding: 8, pointerRadius: 20, }, { icon: "🎨", title: "Redesign with a Click", content: ( <>

Instantly revamp your website's look and feel with our Redesign feature.

Just provide your website URL, and let DeepSite handle the rest!

), selector: "#tour-redesign-section", side: "top-left", showControls: true, showSkip: true, pointerPadding: 8, pointerRadius: 20, }, ], }, ];