diff --git a/src/App.tsx b/src/App.tsx index d207d95..0910892 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,6 +2,7 @@ // Step router — renders the correct step component based on currentStep. // StepIndicator renders above each step as persistent breadcrumb navigation. +import { useState } from 'react'; import { useWizard } from './store/context'; import { WizardProvider } from './store/context'; import { ThemeToggle } from './components/ui/ThemeToggle'; @@ -10,9 +11,32 @@ import { BackendSelectionStep } from './components/wizard/BackendSelectionStep'; import { RemoteConfigStep } from './components/wizard/RemoteConfigStep'; import { DeploymentStep } from './components/wizard/DeploymentStep'; import { ReviewStep } from './components/wizard/ReviewStep'; +import { MD3_BTN_FILLED } from './styles/md3-buttons'; + +function IntroSection({ onStart }: { onStart: () => void }) { + return ( +
+ Ready2Blob walks you through configuring rclone for Azure Blob, S3, OneDrive, and 4 more + cloud backends — no syntax knowledge required. +
+
+ The wizard generates a ready-to-use rclone.conf{' '}
+ and deployment scripts (Intune / RMM) you can download and run immediately.
+