| 1 | import { TooltipProvider } from '../_ui/components/tooltip'; |
| 2 | import React from 'react'; |
| 3 | |
| 4 | const title = 'Nested Layouts'; |
| 5 | |
| 6 | export const metadata = { |
| 7 | metadataBase: new URL('https://splitfire.ai'), |
| 8 | title, |
| 9 | openGraph: { |
| 10 | title, |
| 11 | images: [`/api/og?title=${title}`], |
| 12 | }, |
| 13 | }; |
| 14 | |
| 15 | export default async function Layout({ |
| 16 | children, |
| 17 | }: { |
| 18 | children: React.ReactNode; |
| 19 | }) { |
| 20 | return ( |
| 21 | <div className="space-y-9"> |
| 22 | <TooltipProvider>{children}</TooltipProvider> |
| 23 | </div> |
| 24 | ); |
| 25 | } |