Page MenuHomeMTRNord's Forge

layout.tsx
No OneTemporary

Authored By
Unknown
Size
787 B
Referenced Files
None
Subscribers
None

layout.tsx

import React, { PropsWithChildren } from 'react';
import Image from 'next/image';
import congratulations from '../assets/congratulations.png';
export const metadata = {
title: "Export Miro board to Neoboard",
}
export default function RootLayout({ children }: PropsWithChildren) {
return (
<html lang="en">
<body>
<div id="root">
<div className="grid">
<div className="cs1 ce12">
<Image src={congratulations} alt="" priority />
<h1>Welcome!</h1>
<p>Thank you for wanting to move your board to the Neoboard software!</p>
</div>
<hr className="cs1 ce12" />
<div className="cs1 ce12">{children}</div>
</div>
</div>
</body>
</html>
);
}

File Metadata

Mime Type
application/javascript
Expires
Fri, Mar 20, 4:59 PM (1 d, 22 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27
Default Alt Text
layout.tsx (787 B)

Event Timeline