Update src/app/apply/page.tsx

This commit is contained in:
2026-03-08 06:48:29 +00:00
parent 679619199c
commit ca0959f490

View File

@@ -1,7 +1,7 @@
"use client";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal/FooterBaseReveal';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import { ArrowRight, FileText, CheckCircle, Upload, AlertCircle } from "lucide-react";
@@ -17,8 +17,7 @@ export default function ApplyPage() {
const footerColumns = [
{
title: "Portal",
items: [
title: "Portal", items: [
{ label: "Home", href: "/" },
{ label: "Jobs", href: "/#jobs" },
{ label: "Apply", href: "/apply" },
@@ -26,8 +25,7 @@ export default function ApplyPage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "FAQ", href: "/#faqs" },
{ label: "Process Guide", href: "/#process" },
{ label: "Contact", href: "/#contact" },
@@ -35,8 +33,7 @@ export default function ApplyPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Sitemap", href: "#" },
@@ -63,9 +60,7 @@ export default function ApplyPage() {
brandName="AIIMS Career"
navItems={navItems}
button={{
text: "Login / Apply",
href: "/login",
}}
text: "Login / Apply", href: "/login"}}
/>
</div>