diff --git a/app/setup/SetupPage.tsx b/app/setup/SetupPage.tsx new file mode 100644 index 0000000..694a75b --- /dev/null +++ b/app/setup/SetupPage.tsx @@ -0,0 +1,126 @@ +"use client" + +import { useState } from "react" +import { Mail, User, Lock } from "lucide-react" + +export default function SetupPage() { + const [step, setStep] = useState(1) + + const handleNextStep = () => { + setStep(2) + } + + const handlePreviousStep = () => { + setStep(1) + } + + return ( +
Please create an account to get started
+Here are some next steps to get you started
+ +1. Click Complete to finish the setup & create the user
+2. Create a site with a network
+3. Add your first server to the network
+4. Add all your self-hosted applications to the server
+5. Setup notifications to be notified about any issues
+6. Leave a star on GitHub if you like it
+