import Head from 'next/head' import Link from 'next/link' import layoutStyles from '../styles/layout.module.css' const name = 'Ritesh Chitlangi' const phoneLink = `tel:+60102660209` export default function Layout(props) { return ( <> {props.pageTitle}

{name}

{props.children}
) }