We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea54885 commit 6cfd6f3Copy full SHA for 6cfd6f3
src/app/student/map/page.tsx
@@ -7,9 +7,15 @@ import {
7
import { LocationId, locations } from "@/app/student/map/lib/locations"
8
import { feature } from "@/components/shared/feature"
9
import { fetchExhibitors } from "@/components/shared/hooks/api/useExhibitors"
10
+import { Metadata } from "next"
11
import { notFound } from "next/navigation"
12
import { Suspense } from "react"
13
14
+export const metadata: Metadata = {
15
+ title: "Armada Map",
16
+ description: "Interactive map of the fair"
17
+}
18
+
19
export default async function Page() {
20
if (!(await feature("MAP_PAGE"))) {
21
return notFound()
0 commit comments