File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ export default async function Header({ locale }: { locale: string }) {
5555 description :
5656 'Discover the state-of-the-art facilities and infrastructure on campus.' ,
5757 } ,
58+ {
59+ title : 'Hostels' ,
60+ href : '/institute/hostels' ,
61+ description :
62+ 'Information about on-campus accommodation and hostel facilities.' ,
63+ } ,
5864 ] ,
5965 } ,
6066 {
File renamed without changes.
Original file line number Diff line number Diff line change 11'use server' ;
2+ import Image from 'next/image' ;
23import Link from 'next/link' ;
34import { Suspense } from 'react' ;
4- import Image from 'next/image' ;
55import { MdBadge } from 'react-icons/md' ;
66
7- import { cn , groupBy } from '~/lib/utils' ;
8- import { getS3Url } from '~/server/s3' ;
7+ import { Button } from '~/components/buttons' ;
98import Heading from '~/components/heading' ;
109import ImageHeader from '~/components/image-header' ;
11- import { getTranslations } from '~/i18n/translations ' ;
10+ import Loading from '~/components/loading ' ;
1211import { Card , ScrollArea } from '~/components/ui' ;
12+ import { getTranslations } from '~/i18n/translations' ;
13+ import { cn , groupBy } from '~/lib/utils' ;
1314import { db } from '~/server/db' ;
14- import { Button } from '~/components/buttons' ;
15- import Loading from '~/components/loading' ;
15+ import { getS3Url } from '~/server/s3' ;
1616
17- import { NotificationsList } from '../notifications' ;
17+ import { NotificationsList } from '../../ notifications' ;
1818
1919export default async function Hostels ( {
2020 params : { locale } ,
You can’t perform that action at this time.
0 commit comments