diff --git a/app/[locale]/footer.tsx b/app/[locale]/footer.tsx index 4d8785bd..cc065337 100644 --- a/app/[locale]/footer.tsx +++ b/app/[locale]/footer.tsx @@ -16,6 +16,37 @@ import { cn } from '~/lib/utils'; export default async function Footer({ locale }: { locale: string }) { const text = (await getTranslations(locale)).Footer; + const quickLinks = [ + { name: 'Telephone Directory', href: '#' }, + { name: 'Books and e-Library', href: '#' }, + { name: 'Important Links', href: '#' }, + { name: 'Downloads', href: '#' }, + { name: 'RTI', href: '#' }, + { name: 'NIT KKR IT Infrastructure Usage Policy', href: '#' }, + { name: 'NIT KKR @NDL', href: '#' }, + { name: 'Telephone Directory', href: '#' }, + ]; + + const aboutUs = [ + { name: 'Council of NITs', href: '#' }, + { name: 'NAD Digilocker', href: '#' }, + { name: 'NIRF (Data & Certificate)', href: '#' }, + { name: 'NBA Accreditation Status', href: '#' }, + { name: 'ARIIA', href: '#' }, + { name: 'Skill Hub (PMKVY 4.0)', href: '#' }, + { name: 'Jobs @ NIT KKR', href: '#' }, + ]; + + const departments = [ + { name: 'Vigilance Corner', href: '#' }, + { name: 'PRO', href: '#' }, + { name: 'OBC & PWD Cell', href: '#' }, + { name: 'SC/ST Cell', href: '#' }, + { name: 'Join Alumni Association', href: '#' }, + { name: 'User Login', href: '#' }, + { name: 'Contact Us', href: '#' }, + ]; + return (