import { Grid, GridItem } from '@chakra-ui/react'; import React from 'react'; import { useIsMobile } from '../components/contexts/MobileContext'; import Routes from '../renderer/routes'; import Content from './Content'; import Hero from './Hero'; import Navigation from './Navigation'; export default function LayoutComponent({ children }) { const isMobile = useIsMobile(); return ( {children} ); }