emoji-encoder/app/layout.tsx
Paul Butler 839cf148f0 name
2025-02-08 13:49:35 -05:00

25 lines
535 B
TypeScript

import type { Metadata } from 'next'
import './globals.css'
export const metadata: Metadata = {
title: 'Hide a message in an emoji',
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<head>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>😅</text></svg>"
/>
</head>
<body>{children}</body>
</html>
)
}