File size: 527 Bytes
8d00c92 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import React from 'react';
import Head from 'next/head';
import { useTranslation } from 'next-i18next';
const Layout: React.FC<{children: React.ReactNode}> = ({ children }) => {
const { t } = useTranslation('common');
return (
<>
<Head>
<title>{t('title')}</title>
<meta name="description" content="Evolutionary model merging for Hugging Face" />
</Head>
<main className="min-h-screen bg-gray-50 text-gray-900">
{children}
</main>
</>
);
};
export default Layout; |