Skip to content

Commit

Permalink
Updating
Browse files Browse the repository at this point in the history
  • Loading branch information
iamhectorsosa committed Apr 2, 2024
1 parent 9f7579d commit b479915
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/next/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { Providers } from "./providers"

import "./globals.css"

import type { Viewport } from "next"

import { ApplicationLayout } from "@/components/application-layout"

import { createClient } from "@/modules/utils/server"
Expand All @@ -16,6 +18,13 @@ const fontSans = FontSans({
variable: "--font-sans",
})

export const viewport: Viewport = {
width: "device-width",
initialScale: 1,
maximumScale: 1,
userScalable: false,
}

export const metadata: Metadata = {
metadataBase: new URL("https://supabase-modules-demo.vercel.app/"),
title: "The Playground",
Expand Down

0 comments on commit b479915

Please sign in to comment.