feat: Add landing page

This commit is contained in:
2024-11-21 00:26:31 -05:00
parent f700cad564
commit 59a9aa67b9
7 changed files with 196 additions and 43 deletions

View File

@@ -3,9 +3,20 @@ import {
} from '@clerk/nextjs';
import { Inter } from 'next/font/google';
import './globals.css';
import { Metadata } from 'next';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'HRIStudio',
description: 'A platform for managing human-robot interaction studies',
icons: {
icon: [
{ url: '/icon', type: 'image/svg+xml' },
],
},
};
export default function RootLayout({
children,
}: {