diff --git a/src/app/account/onboarding/tutor/layout.tsx b/src/app/account/onboarding/tutor/layout.tsx index ebefd6b..1fd018a 100644 --- a/src/app/account/onboarding/tutor/layout.tsx +++ b/src/app/account/onboarding/tutor/layout.tsx @@ -1,7 +1,9 @@ -export default function Layout({ children }: { children: React.ReactNode }) { - return ( -
- {children} -
- ); - } \ No newline at end of file +const Layout = ({ children }: { children: React.ReactNode }) => { + return ( + <> +
{children}
+ + ); +}; + +export default Layout; diff --git a/src/app/account/onboarding/tutor/page.tsx b/src/app/account/onboarding/tutor/page.tsx index 232788d..b980007 100644 --- a/src/app/account/onboarding/tutor/page.tsx +++ b/src/app/account/onboarding/tutor/page.tsx @@ -1,9 +1,10 @@ import React from 'react' +import Tutor from './tutor' function Page() { return (
- +
) } diff --git a/src/app/account/onboarding/tutor/tutor.tsx b/src/app/account/onboarding/tutor/tutor.tsx index 32bae09..8e36d90 100644 --- a/src/app/account/onboarding/tutor/tutor.tsx +++ b/src/app/account/onboarding/tutor/tutor.tsx @@ -1,11 +1,87 @@ -import React from 'react' +"use client"; +import Input from "@/components/Forms/Input"; +import React from "react"; +import TextArea from "@/components/Forms/TextArea"; +import Selector from "@/components/Forms/Selector"; +import Checkbox from "@/components/Forms/Checkbox"; +import Button from "@/components/Forms/Button"; + +const skills = [ + "UI/UX", + "Solidity", + "TypeScript", + "Cairo", + "Rust", + "React.js", + "Tailwind CSS", + "Node JS", +]; function Tutor() { + const handleSkillSelection = (selectedSkills: string[]) => {}; + const handleContinue = () => {}; + return ( -
- +
+
+
+
+
+

+ Build your profile as tutor +

+

+ Enter your professional details +

+
+
+
+ +
+
+