File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 11import { type ReactNode } from "react" ;
2- import { type Metadata } from "next" ;
2+ import { type Metadata , type Viewport } from "next" ;
33import TopNav from "@azure-fundamentals/components/TopNav" ;
44import Footer from "@azure-fundamentals/components/Footer" ;
55import ApolloProvider from "@azure-fundamentals/components/ApolloProvider" ;
66import Cookie from "@azure-fundamentals/components/Cookie" ;
77import "styles/globals.css" ;
88
9+ export const viewport : Viewport = {
10+ themeColor : "#3f51b5" ,
11+ width : "device-width" ,
12+ initialScale : 1 ,
13+ } ;
14+
915export const metadata : Metadata = {
1016 appleWebApp : {
1117 capable : true ,
@@ -71,7 +77,6 @@ export const metadata: Metadata = {
7177 follow : true ,
7278 index : true ,
7379 } ,
74- themeColor : "#3f51b5" ,
7580 title : {
7681 default : "🧪 Practice Exams Platform | Ditectrev" ,
7782 template : "🧪 Practice Exams Platform | Ditectrev" ,
@@ -90,10 +95,6 @@ export const metadata: Metadata = {
9095 site : "@ditectrev" ,
9196 title : "🧪 Practice Exams Platform | Ditectrev" ,
9297 } ,
93- viewport : {
94- initialScale : 1 ,
95- width : "device-width" ,
96- } ,
9798} ;
9899
99100type RootLayoutProps = {
You can’t perform that action at this time.
0 commit comments