feat?: add placeholder under construction msg
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 47 KiB |
+20
-7
@@ -2,7 +2,7 @@ import type { Metadata, Viewport } from 'next';
|
||||
import './globals.css';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: '⛧',
|
||||
title: 'site under construction',
|
||||
// description: '',
|
||||
openGraph: {
|
||||
// title: '⛧',
|
||||
@@ -11,15 +11,15 @@ export const metadata: Metadata = {
|
||||
{
|
||||
url: 'https://neru.rip/img/ok.jpg',
|
||||
width: 734,
|
||||
height: 1104,
|
||||
},
|
||||
],
|
||||
height: 1104
|
||||
}
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
export const viewport: Viewport = {
|
||||
themeColor: '#fbcfe8',
|
||||
}
|
||||
themeColor: '#fbcfe8'
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children
|
||||
@@ -47,7 +47,20 @@ export default function RootLayout({
|
||||
/>
|
||||
<link rel='manifest' href='/site.webmanifest' />
|
||||
<html lang='en'>
|
||||
<body className={`antialiased`}>{children}</body>
|
||||
<body className={`antialiased`}>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
padding: '2rem'
|
||||
}}
|
||||
>
|
||||
<img
|
||||
src={'construction.jpg'}
|
||||
style={{ width: '100%', maxWidth: '600px', height: 'auto' }}
|
||||
/>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user