diff --git a/app/(auth)/sign-in/page.tsx b/app/(auth)/sign-in/page.tsx
index cac30f7..3342803 100644
--- a/app/(auth)/sign-in/page.tsx
+++ b/app/(auth)/sign-in/page.tsx
@@ -1,6 +1,5 @@
import Link from "next/link";
-import Image from "next/image";
-import { ArrowRight } from "lucide-react";
+import { User } from "lucide-react";
import { AuthInput } from "@/components/auth/auth-input";
import { OAuthButton } from "@/components/auth/oauth-button";
@@ -9,14 +8,9 @@ export default function SignInPage() {
return (
-
-
+
Log in to Hyper Learning
diff --git a/app/(auth)/sign-up/page.tsx b/app/(auth)/sign-up/page.tsx
index 9ad5643..de96e83 100644
--- a/app/(auth)/sign-up/page.tsx
+++ b/app/(auth)/sign-up/page.tsx
@@ -1,6 +1,5 @@
import Link from "next/link";
-import Image from "next/image";
-import { ArrowRight } from "lucide-react";
+import { User } from "lucide-react";
import { AuthInput } from "@/components/auth/auth-input";
import { OAuthButton } from "@/components/auth/oauth-button";
@@ -15,18 +14,20 @@ const BRANCHES = branches.map((branch) => {
return `${branch.name} (${acronym})`;
});
+const UNIVERSITIES = [
+ "Rajiv Gandhi Proudyogiki Vishwavidyalaya (RGPV)",
+ "Dr. A.P.J. Abdul Kalam Technical University (AKTU)",
+ "Rajasthan Technical University (RTU)",
+ "Other",
+];
+
export default function SignUpPage() {
return (
-
-
+
Create an account
@@ -56,6 +57,14 @@ export default function SignUpPage() {
placeholder="Email address"
/>
+
+