You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
57 lines
1.4 KiB
import '../styles/globals.css';
|
|
import '@livekit/components-styles';
|
|
import '@livekit/components-styles/prefabs';
|
|
import type { Metadata, Viewport } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
default: 'LiveKit Meet | Conference app build with LiveKit open source',
|
|
template: '%s',
|
|
},
|
|
description:
|
|
'LiveKit is an open source WebRTC project that gives you everything needed to build scalable and real-time audio and/or video experiences in your applications.',
|
|
twitter: {
|
|
creator: '@livekitted',
|
|
site: '@livekitted',
|
|
card: 'summary_large_image',
|
|
},
|
|
openGraph: {
|
|
url: 'https://meet.livekit.io',
|
|
images: [
|
|
{
|
|
url: 'https://meet.livekit.io/images/livekit-meet-open-graph.png',
|
|
width: 2000,
|
|
height: 1000,
|
|
type: 'image/png',
|
|
},
|
|
],
|
|
siteName: 'LiveKit Meet',
|
|
},
|
|
icons: {
|
|
icon: {
|
|
rel: 'icon',
|
|
url: '/favicon.ico',
|
|
},
|
|
apple: [
|
|
{
|
|
rel: 'apple-touch-icon',
|
|
url: '/images/livekit-apple-touch.png',
|
|
sizes: '180x180',
|
|
},
|
|
{ rel: 'mask-icon', url: '/images/livekit-safari-pinned-tab.svg', color: '#070707' },
|
|
],
|
|
},
|
|
};
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: '#070707',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|