From 72dd5853d86aea581d80f4a767604fa320027ef9 Mon Sep 17 00:00:00 2001 From: Louis Qian Date: Tue, 10 Sep 2024 20:03:19 -0500 Subject: [PATCH] feat!: force desktop viewport --- src/pages/event/[id].tsx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/pages/event/[id].tsx b/src/pages/event/[id].tsx index ca2c5c1..bc77828 100644 --- a/src/pages/event/[id].tsx +++ b/src/pages/event/[id].tsx @@ -8,6 +8,7 @@ import { OperationCard } from "../../components/section/OperationCard"; import Footer from "../../components/section/Footer"; import { ScreenLoading } from "../../components/ui/ScreenLoading"; import { PrismaClient } from "@prisma/client"; +import Head from "next/head"; export const getStaticPaths: GetStaticPaths = () => { return { @@ -55,12 +56,17 @@ const EventPage: NextPage = () => { } return ( -
- - - -
-
+ <> + + + +
+ + + +
+ ); };