25 lines
553 B
TypeScript
25 lines
553 B
TypeScript
import '../globals.css';
|
|
import type { Metadata } from 'next';
|
|
import { Inter } from 'next/font/google';
|
|
import AppLayoutClient from './AppLayoutClient';
|
|
|
|
const inter = Inter({ subsets: ['latin'] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'ShortURL Analytics',
|
|
description: 'Analytics dashboard for ShortURL service',
|
|
};
|
|
|
|
export default function AppLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div className={inter.className}>
|
|
<AppLayoutClient>
|
|
{children}
|
|
</AppLayoutClient>
|
|
</div>
|
|
);
|
|
}
|