34 lines
924 B
TypeScript
34 lines
924 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Inter } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
variable: '--font-inter',
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'rTrips - Collaborative Trip Planning',
|
|
description: 'Plan trips together with natural language input, structured itineraries, and a real-time collaborative canvas. Describe your trip and let AI structure it for you.',
|
|
openGraph: {
|
|
title: 'rTrips - Collaborative Trip Planning',
|
|
description: 'Plan trips together with natural language input and real-time collaborative canvas.',
|
|
type: 'website',
|
|
url: 'https://rtrips.online',
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${inter.variable} font-sans antialiased`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|