diff --git a/app/about/page.tsx b/app/about/page.tsx
index 0c9935c..9db8781 100644
--- a/app/about/page.tsx
+++ b/app/about/page.tsx
@@ -217,7 +217,7 @@ export default function AboutPage() {
Indian arts and wisdom.
Become an Instructor
diff --git a/app/become-an-instructor/page.tsx b/app/become-an-instructor/page.tsx
new file mode 100644
index 0000000..1f0a9b6
--- /dev/null
+++ b/app/become-an-instructor/page.tsx
@@ -0,0 +1,43 @@
+"use client";
+import { useState } from "react";
+import Link from "next/link";
+
+export default function BecomeAnInstructor() {
+ const [submitted, setSubmitted] = useState(false);
+ return (
+
+ {/* Hero Section */}
+
+
+ Become an Instructor
+
+
+ Share your culture, language, and traditions with diaspora learners worldwide and earn flexible income doing what you love.
+
+
+ {submitted ? (
+
+
+
Application Submitted!
+
Thank you for applying. We'll review your application and get back to you soon.
+
+) : (
+
+)}
+
+
+ ← Back to Home
+
+ );
+}
\ No newline at end of file
diff --git a/components/ScrollToTop.tsx b/components/ScrollToTop.tsx
new file mode 100644
index 0000000..39368e6
--- /dev/null
+++ b/components/ScrollToTop.tsx
@@ -0,0 +1,13 @@
+"use client";
+import { useEffect } from "react";
+import { usePathname } from "next/navigation";
+
+export function ScrollToTop(){
+ const pathname= usePathname();
+
+ useEffect(()=>{
+ window.scrollTo(0,0);
+ }, [pathname]);
+
+ return null;
+}
\ No newline at end of file