// @flow import React from 'react'; import { Helmet } from 'react-helmet'; import { TopNavigation, BottomNavigation } from './Navigation'; import Analytics from '../../../shared/components/Analytics'; import globalStyles from '../../../shared/styles/globals'; import { color } from '../../../shared/styles/constants'; export const title = 'Outline'; export const description = 'Your team’s knowledge base - Team wiki, documentation, playbooks, onboarding & more…'; export const screenshotUrl = `${process.env.URL}/screenshot.png`; type Props = { children?: React$Element<*>, }; export default function Layout({ children }: Props) { globalStyles(); return (