File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { OperationCard } from "../../components/section/OperationCard";
8
8
import Footer from "../../components/section/Footer" ;
9
9
import { ScreenLoading } from "../../components/ui/ScreenLoading" ;
10
10
import { PrismaClient } from "@prisma/client" ;
11
+ import Head from "next/head" ;
11
12
12
13
export const getStaticPaths : GetStaticPaths = ( ) => {
13
14
return {
@@ -55,12 +56,17 @@ const EventPage: NextPage = () => {
55
56
}
56
57
57
58
return (
58
- < div className = "flex min-h-screen w-screen flex-col bg-gray-100" >
59
- < Navbar />
60
- < EventInfoHeader />
61
- < OperationCard />
62
- < Footer />
63
- </ div >
59
+ < >
60
+ < Head >
61
+ < meta name = "viewport" content = "width=1024" />
62
+ </ Head >
63
+ < div className = "flex min-h-screen w-screen flex-col bg-gray-100" >
64
+ < Navbar />
65
+ < EventInfoHeader />
66
+ < OperationCard />
67
+ < Footer />
68
+ </ div >
69
+ </ >
64
70
) ;
65
71
} ;
66
72
You can’t perform that action at this time.
0 commit comments