rtrips-online/src/app/layout.tsx

37 lines
1.0 KiB
TypeScript

import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
import { AuthProvider } from '@/components/AuthProvider'
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`}>
<AuthProvider>
{children}
</AuthProvider>
</body>
</html>
)
}