diff --git a/web/components/routes/OnboardingRoute.tsx b/web/components/routes/OnboardingRoute.tsx
new file mode 100644
index 00000000..017c856c
--- /dev/null
+++ b/web/components/routes/OnboardingRoute.tsx
@@ -0,0 +1,89 @@
+"use client"
+
+import { LaIcon } from "../custom/la-icon"
+import { useState } from "react"
+
+const steps = [
+ {
+ number: 1,
+ title: "Create Link",
+ description:
+ "Links are essentially bookmarks of things from internet. You can create a link by pressing Links button in left sidebar. Then pressing + button on the bottom.",
+ task: "create any Link with any title or description (for example, you can add https://learn-anything.xyz as link)"
+ },
+ {
+ number: 2,
+ title: "Create Page",
+ description:
+ "Pages are things with content inside (images, text, anything). You can think of them as Notion pages. To create page, press the + button next to pages, then create title and put some content.",
+ task: "create any Page with any content inside"
+ },
+ {
+ number: 3,
+ title: "Start tracking Learning status of some Topic",
+ description:
+ "What makes Learn Anything different from Notion and other tools is notion of topics. A topic is anything after learn-anything.xyz/
, for example learn-anything.xyz/typescript. You can go to the page, then on top right corner where it says add to my profile, press it and change the state of the topic to I want to learn, Learning or Learned.",
+ task: "go to any Topic, and mark it as I want to learn"
+ },
+ {
+ number: 4,
+ title: "Add a Link from a Topic into personal link collection",
+ description:
+ "If you noticed, there are links attached to topics as a list. This is the topic's study guide. It will be improved greatly in future and we will allow any user to edit these study guides too (Reddit style). You can click on the circle to left of the links and add a link to your personal collection with learning status too.",
+ task: "add any Link from topic typescript into your personal collection"
+ }
+]
+
+const StepItem = ({
+ number,
+ title,
+ description,
+ task,
+ done
+}: {
+ number: number
+ title: string
+ description: string
+ task: string
+ done: boolean
+}) => (
+
+
+ {number}
+
+
+
{title}
+
{description}
+
+
+
+)
+
+export default function OnboardingRoute() {
+ const [completedSteps, setCompletedSteps] = useState([])
+
+ const stepComplete = (stepNumber: number) => {
+ setCompletedSteps(prev =>
+ prev.includes(stepNumber) ? prev.filter(num => num !== stepNumber) : [...prev, stepNumber]
+ )
+ }
+
+ return (
+
+
+
+
Complete the steps below to get started
+
+ {steps.map(step => (
+
+ ))}
+
+
+
+ )
+}