Files
cloud-host/frontend/src/app/layout.tsx
T
keyhan 33be1649c4 init
2026-04-05 15:22:01 +03:30

26 lines
588 B
TypeScript

import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
import { Providers } from '@/components/providers';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'CloudHost - Self-Service PaaS',
description: 'Deploy your applications to Kubernetes with ease',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>
<Providers>{children}</Providers>
</body>
</html>
);
}