Lanyards is a dedicated profile for researchers, built on the AT Protocol.
1import type { Metadata, Viewport } from 'next';
2import './globals.css';
3
4export const metadata: Metadata = {
5 title: 'Lanyards - Researcher Profiles on AT Protocol',
6 description:
7 'A dedicated profile for researchers, built on the AT Protocol. An alternative to ORCID.',
8};
9
10export const viewport: Viewport = {
11 width: 'device-width',
12 initialScale: 1,
13 maximumScale: 1,
14};
15
16export default function RootLayout({
17 children,
18}: Readonly<{
19 children: React.ReactNode;
20}>) {
21 return (
22 <html lang="en">
23 <body className="antialiased">{children}</body>
24 </html>
25 );
26}