2023-10-26 00:54:14 -06:00
|
|
|
|
import React from 'react';
|
2024-12-21 00:51:45 -07:00
|
|
|
|
import TWGBadge from './components/TWGBadge/TWGBadge';
|
2023-10-26 00:54:14 -06:00
|
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
/>
|
2024-01-05 06:46:10 -07:00
|
|
|
|
<meta
|
|
|
|
|
name="og:image"
|
2024-11-07 01:28:20 -07:00
|
|
|
|
content="https://docs.thewidlarzgroup.com/react-native-video/thumbnail.jpg"
|
2024-01-05 06:46:10 -07:00
|
|
|
|
/>
|
2024-01-05 07:14:25 -07:00
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
2024-01-05 07:51:13 -07:00
|
|
|
|
<meta name="twitter:title" content="React Native Video" />
|
2024-01-05 07:14:25 -07:00
|
|
|
|
<meta
|
|
|
|
|
name="twitter:description"
|
|
|
|
|
content="A Video component for React Native"
|
|
|
|
|
/>
|
2024-01-05 06:46:10 -07:00
|
|
|
|
<meta
|
|
|
|
|
name="twitter:image"
|
2024-11-07 01:28:20 -07:00
|
|
|
|
content="https://docs.thewidlarzgroup.com/react-native-video/thumbnail.jpg"
|
2024-01-05 06:46:10 -07:00
|
|
|
|
/>
|
|
|
|
|
<meta name="twitter:image:alt" content="React Native Video" />
|
2024-11-07 01:28:20 -07:00
|
|
|
|
<link
|
|
|
|
|
rel="icon"
|
|
|
|
|
type="image/png"
|
|
|
|
|
href="https://docs.thewidlarzgroup.com/react-native-video/favicon.png"
|
|
|
|
|
/>
|
2025-01-13 07:01:15 -07:00
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4YEWQH5ZHS"></script>
|
|
|
|
|
<script>
|
|
|
|
|
{`
|
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
gtag('config', 'G-4YEWQH5ZHS');
|
|
|
|
|
`}
|
|
|
|
|
</script>
|
2023-10-26 00:54:14 -06:00
|
|
|
|
</>
|
|
|
|
|
),
|
|
|
|
|
logo: (
|
|
|
|
|
<span>
|
|
|
|
|
🎬 <strong>Video component</strong> for React Native
|
|
|
|
|
</span>
|
|
|
|
|
),
|
|
|
|
|
project: {
|
2024-05-07 09:25:09 -06:00
|
|
|
|
link: 'https://github.com/TheWidlarzGroup/react-native-video',
|
2023-10-26 00:54:14 -06:00
|
|
|
|
},
|
|
|
|
|
docsRepositoryBase:
|
2024-05-07 09:25:09 -06:00
|
|
|
|
'https://github.com/TheWidlarzGroup/react-native-video/tree/master/docs/',
|
2024-12-21 00:51:45 -07:00
|
|
|
|
main: ({children}) => (
|
|
|
|
|
<>
|
|
|
|
|
{children}
|
|
|
|
|
<TWGBadge visibleOnLarge={false} />
|
|
|
|
|
</>
|
|
|
|
|
),
|
|
|
|
|
toc: {
|
|
|
|
|
extraContent: <TWGBadge visibleOnLarge={true} />,
|
|
|
|
|
},
|
2023-10-26 00:54:14 -06:00
|
|
|
|
footer: {
|
|
|
|
|
text: (
|
|
|
|
|
<span>
|
2024-07-11 14:52:10 -06:00
|
|
|
|
Built with ❤️ by <strong>React Native Community</strong>
|
2023-10-26 00:54:14 -06:00
|
|
|
|
</span>
|
|
|
|
|
),
|
|
|
|
|
},
|
2024-10-05 03:21:50 -06:00
|
|
|
|
|
2023-10-26 00:54:14 -06:00
|
|
|
|
useNextSeoProps() {
|
|
|
|
|
return {
|
|
|
|
|
titleTemplate: '%s – Video',
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
};
|