2025-12-06 11:53:45 +05:30

29 lines
806 B
TypeScript

import ProviderComponent from '@/components/layouts/provider-component';
import 'react-perfect-scrollbar/dist/css/styles.css';
import '../styles/tailwind.css';
import { Metadata } from 'next';
import { Nunito } from 'next/font/google';
export const metadata: Metadata = {
title: {
template: 'CrawlerX',
default: 'Crawl Smarter. Rank Higher.',
},
};
const nunito = Nunito({
weight: ['400', '500', '600', '700', '800'],
subsets: ['latin'],
display: 'swap',
variable: '--font-nunito',
});
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={nunito.variable}>
<ProviderComponent>{children}</ProviderComponent>
</body>
</html>
);
}