feat?: add placeholder under construction msg

This commit is contained in:
2026-06-26 08:48:45 -03:00
parent eebd87a650
commit 97240373ca
2 changed files with 20 additions and 7 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

+20 -7
View File
@@ -2,7 +2,7 @@ import type { Metadata, Viewport } from 'next';
import './globals.css'; import './globals.css';
export const metadata: Metadata = { export const metadata: Metadata = {
title: '', title: 'site under construction',
// description: '', // description: '',
openGraph: { openGraph: {
// title: '⛧', // title: '⛧',
@@ -11,15 +11,15 @@ export const metadata: Metadata = {
{ {
url: 'https://neru.rip/img/ok.jpg', url: 'https://neru.rip/img/ok.jpg',
width: 734, width: 734,
height: 1104, height: 1104
}, }
], ]
} }
}; };
export const viewport: Viewport = { export const viewport: Viewport = {
themeColor: '#fbcfe8', themeColor: '#fbcfe8'
} };
export default function RootLayout({ export default function RootLayout({
children children
@@ -47,7 +47,20 @@ export default function RootLayout({
/> />
<link rel='manifest' href='/site.webmanifest' /> <link rel='manifest' href='/site.webmanifest' />
<html lang='en'> <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> </html>
</> </>
); );