Spaces:
Running
Running
File size: 582 Bytes
0dd2082 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import './globals.css';
import Header from '../components/Header';
import { Providers } from '../components/Providers';
export const metadata = {
title: 'RedThread - AI-assisted location-based recommendations',
description: 'Find the perfect spot, powered by AI.',
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body suppressHydrationWarning={true}>
<Providers>
<Header />
{children}
</Providers>
</body>
</html>
);
}
|