Files
RepoHub/src/app/layout.tsx
T
Yusuf İpek cc82888c74 chore: remove debug endpoints and update configuration
- Removed debug-packages and test-sync API endpoints no longer needed
- Extracted sync status management into shared lib/sync/status module
- Updated Next.js config to remove deprecated experimental appDir flag
- Added port specification to production start script for consistency
2025-11-11 17:19:34 +03:00

28 lines
670 B
TypeScript

import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import { LocaleProvider } from '@/contexts/LocaleContext'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'RepoHub - Cross-Platform Package Manager',
description: 'Simplify software installation across Linux, Windows, and macOS with official repositories',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body className={inter.className}>
<LocaleProvider>
{children}
</LocaleProvider>
</body>
</html>
)
}