react-native-video/docs/theme.config.jsx
2024-07-11 22:52:10 +02:00

61 lines
1.8 KiB
JavaScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
export default {
head: (
<>
<meta name="language" content="en" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="Video component for React Native" />
<meta name="og:title" content="React Native Video" />
<meta
name="og:description"
content="A Video component for React Native"
/>
<meta
name="og:image"
content="https://thewidlarzgroup.github.io/react-native-video/thumbnail.jpg"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="React Native Video" />
<meta
name="twitter:description"
content="A Video component for React Native"
/>
<meta
name="twitter:image"
content="https://thewidlarzgroup.github.io/react-native-video/thumbnail.jpg"
/>
<meta name="twitter:image:alt" content="React Native Video" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin />
<link
href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap"
rel="stylesheet"
/>
</>
),
logo: (
<span>
🎬 <strong>Video component</strong> for React Native
</span>
),
faviconGlyph: '🎬',
project: {
link: 'https://github.com/TheWidlarzGroup/react-native-video',
},
docsRepositoryBase:
'https://github.com/TheWidlarzGroup/react-native-video/tree/master/docs/',
footer: {
text: (
<span>
Built with by <strong>React Native Community</strong>
</span>
),
},
useNextSeoProps() {
return {
titleTemplate: '%s Video',
};
},
};