Added public layout group

This commit is contained in:
2025-06-25 19:56:34 +02:00
parent d9de3f4b6e
commit 7e86d53c81
4 changed files with 56 additions and 11 deletions

View File

@@ -1,18 +1,16 @@
import type { Metadata } from "next"
import { ReactNode } from "react"
import "./globals.css"
export const metadata: Metadata = {
title: "Linker",
description: "A simple link shortener"
}
export default function RootLayout({
children
}: Readonly<{ children: ReactNode }>) {
}: {
children: ReactNode
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className="antialiased">{children}</body>
<body className="antialiased">
{children}
</body>
</html>
)
}