diff --git a/app/(private)/Alta/page.tsx b/app/(private)/Alta/page.tsx
index acf3ec2..dc08afd 100644
--- a/app/(private)/Alta/page.tsx
+++ b/app/(private)/Alta/page.tsx
@@ -1,4 +1,4 @@
-'use client'
+"use client";
import { useState } from "react";
import StepNavigator from "@/app/Components/StepNavigator/StepNavigator";
@@ -6,86 +6,71 @@ export default function Page() {
const [step, setStep] = useState(1);
const [major, setMajor] = useState("");
- const handleNext = (e: any) => {
- e.preventDefault();
- if (step < 3) setStep(step + 1);
- };
-
- const handlePrev = (e: any) => {
- e.preventDefault();
- if (step > 1) setStep(step - 1);
- };
-
return (
ALTA
console.log()}>
-
-
-
+
);
}
-//IO
\ No newline at end of file
+//IO
diff --git a/app/Components/BarNavigation/BarNavigation.css b/app/Components/BarNavigation/BarNavigation.css
index fe017fe..b7d7cea 100644
--- a/app/Components/BarNavigation/BarNavigation.css
+++ b/app/Components/BarNavigation/BarNavigation.css
@@ -56,7 +56,6 @@
align-items: center;
justify-content: center;
width: 100%;
- gap: 10px;
position: relative;
z-index: 1;
border-radius: 4px 4px 0 0;
@@ -139,7 +138,7 @@ tbody {
.barNavigation ul {
position: absolute;
- background-color: rgb(1, 92, 184);
+ background-color: #003e79;
flex-direction: column;
padding: 10px 0;
align-items: center;
@@ -160,10 +159,10 @@ tbody {
}
.subMenu ul {
- width: 90%;
+ width: 100%;
border-radius: 4px;
position: relative;
- background-color: rgba(0, 61, 121, 1);
+ background-color: rgb(1, 92, 184);
}
thead,
diff --git a/app/Components/ChangePassword/changePassword.tsx b/app/Components/ChangePassword/changePassword.tsx
index 7284b98..620a57b 100644
--- a/app/Components/ChangePassword/changePassword.tsx
+++ b/app/Components/ChangePassword/changePassword.tsx
@@ -14,7 +14,7 @@ export default function ChangePassword() {
return (