mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 21:44:13 +03:00
* add docs chinese i18n * fix some broken links * update some i18n * update chinese docs * add chinese community docs * Change docs i18n chinese label
15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
import React from 'react';
|
|
import NavbarLayout from '@theme/Navbar/Layout';
|
|
import NavbarContent from '@theme/Navbar/Content';
|
|
import LanguageAlert from '../../components/LanguageAlert';
|
|
|
|
export default function Navbar() {
|
|
return (
|
|
<>
|
|
<NavbarLayout>
|
|
<NavbarContent />
|
|
</NavbarLayout>
|
|
<LanguageAlert />
|
|
</>
|
|
);
|
|
} |