mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-18 13:34:06 +01:00
ui: add viewport metadata
This commit is contained in:
parent
4ed90281ce
commit
92fa9f5722
@ -1,5 +1,5 @@
|
||||
import React from "react";
|
||||
import type { Metadata } from "next";
|
||||
import type { Metadata, Viewport } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { ThemeProvider } from "@/components/theme-provider";
|
||||
import { ReactQueryClientProvider } from "@/components/ReactQueryClientProvider";
|
||||
@ -22,6 +22,11 @@ export const metadata: Metadata = {
|
||||
description: "B2DVentures is a financial services company.",
|
||||
};
|
||||
|
||||
export const viewport: Viewport = {
|
||||
initialScale: 1,
|
||||
width: "device-width",
|
||||
};
|
||||
|
||||
interface RootLayoutProps {
|
||||
children: Readonly<React.ReactNode>;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user