File size: 654 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import type { PropsWithChildren } from 'react';
import React from 'react';
import { Helmet } from 'dumi';
import Footer from '../../slots/Footer';
interface IndexLayoutProps {
title?: string;
desc?: string;
}
const IndexLayout: React.FC<PropsWithChildren<IndexLayoutProps>> = (props) => {
const { children, title, desc } = props;
return (
<>
<Helmet>
<title>{title}</title>
<meta property="og:title" content={title} />
{desc && <meta name="description" content={desc} />}
</Helmet>
<div style={{ minHeight: '100vh' }}>{children}</div>
<Footer />
</>
);
};
export default IndexLayout;
|