import * as React from 'react'; import RouterLink from 'next/link'; import Box from '@mui/material/Box'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; import { paths } from '@/paths'; import { DynamicLogo } from '@/components/core/logo'; export interface LayoutProps { children: React.ReactNode; } export function Layout({ children }: LayoutProps): React.JSX.Element { return ( {children} Welcome to{' '} Devias Kit A professional template that comes with ready-to-use MUI components. ); }