mirror of
https://github.com/0xShay/halflink.git
synced 2026-01-11 13:13:25 +00:00
22 lines
409 B
TypeScript
22 lines
409 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Halflink",
|
|
description: "Shorten links with the click of a button.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="nova-oval-regular">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|