import Link from 'next/link' import Navbar from '../components/Navbar' function GetTimeString() { const hours = new Date().getHours() if (hours < 12) { return 'Morning' } else if (hours >= 12 && hours <= 17) { return 'Afternoon' } else if (hours >= 17 && hours <= 24) { return 'Evening' } } const IndexPage = () => (

Good {GetTimeString()}! I'm Jack Merrill.

A Graphic and UI/UX Designer and Fullstack Developer from Chicago.

See my Work or Contact Me
) export default IndexPage