2023-04-07 23:18:45 -05:00
|
|
|
import { ReactNode } from 'react';
|
|
|
|
|
import './globals.css';
|
2023-04-07 21:33:32 -05:00
|
|
|
|
|
|
|
|
export const metadata = {
|
2023-04-07 23:18:45 -05:00
|
|
|
title: 'Onspring API Docs',
|
|
|
|
|
description: 'Documentation for the Onspring API',
|
2023-04-09 23:13:02 -05:00
|
|
|
icons: {
|
|
|
|
|
icon: [
|
|
|
|
|
{
|
2023-04-10 23:25:06 -05:00
|
|
|
url: 'docs/images/favicon.ico',
|
2023-04-09 23:13:02 -05:00
|
|
|
type: 'image/x-icon',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2023-04-07 23:18:45 -05:00
|
|
|
};
|
2023-04-07 21:33:32 -05:00
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
2023-04-07 23:18:45 -05:00
|
|
|
children: ReactNode;
|
2023-04-07 21:33:32 -05:00
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
2023-04-10 23:20:07 -05:00
|
|
|
<body>{children}</body>
|
2023-04-07 21:33:32 -05:00
|
|
|
</html>
|
2023-04-07 23:18:45 -05:00
|
|
|
);
|
2023-04-07 21:33:32 -05:00
|
|
|
}
|