mirror of
https://github.com/Dokploy/website.git
synced 2026-06-24 16:45:23 +02:00
- Introduced new MDX components and configuration files for the documentation site. - Added various images and icons to enhance the visual representation of the documentation. - Updated package.json and pnpm-lock.yaml to include new dependencies for the documentation. - Created a .gitignore file for the new docs app to manage ignored files effectively. - Enhanced README with instructions for restarting the dev server after adding new MDX files.
34 lines
1002 B
TypeScript
34 lines
1002 B
TypeScript
import { RootProvider } from 'fumadocs-ui/provider/next';
|
|
import './global.css';
|
|
import { Inter } from 'next/font/google';
|
|
import type { Metadata } from 'next';
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
default: 'Dokploy Documentation',
|
|
template: '%s | Dokploy',
|
|
},
|
|
description: 'Open Source Alternative to Vercel, Netlify and Heroku. Deploy your applications with ease.',
|
|
keywords: ['dokploy', 'deployment', 'docker', 'hosting', 'devops', 'open source'],
|
|
authors: [{ name: 'Dokploy Team' }],
|
|
openGraph: {
|
|
title: 'Dokploy Documentation',
|
|
description: 'Open Source Alternative to Vercel, Netlify and Heroku',
|
|
type: 'website',
|
|
},
|
|
};
|
|
|
|
export default function Layout({ children }: LayoutProps<'/'>) {
|
|
return (
|
|
<html lang="en" className={inter.className} suppressHydrationWarning>
|
|
<body className="flex flex-col min-h-screen">
|
|
<RootProvider>{children}</RootProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|