Skip to content

Commit 6cfd6f3

Browse files
committed
fix: Add map page metadata
1 parent ea54885 commit 6cfd6f3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/app/student/map/page.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@ import {
77
import { LocationId, locations } from "@/app/student/map/lib/locations"
88
import { feature } from "@/components/shared/feature"
99
import { fetchExhibitors } from "@/components/shared/hooks/api/useExhibitors"
10+
import { Metadata } from "next"
1011
import { notFound } from "next/navigation"
1112
import { Suspense } from "react"
1213

14+
export const metadata: Metadata = {
15+
title: "Armada Map",
16+
description: "Interactive map of the fair"
17+
}
18+
1319
export default async function Page() {
1420
if (!(await feature("MAP_PAGE"))) {
1521
return notFound()

0 commit comments

Comments
 (0)