32 lines
688 B
TypeScript
32 lines
688 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import { Header } from "@/components/header";
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-sans",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
metadataBase: new URL("https://clips.linxweiler.xyz"),
|
|
title: "Video Clip Cutter",
|
|
description: "Trim and share video clips",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body
|
|
className={`${inter.variable} antialiased`}
|
|
>
|
|
<Header />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
} |