import Link from 'next/link' import { useEffect, useState } from 'react' import CodeIcon from '../components/Images/CodeIcon' import DesignIcon from '../components/Images/DesignIcon' import GitHubIcon from '../components/Images/GitHubIcon'; import MailIcon from '../components/Images/MailIcon'; import TwitterIcon from '../components/Images/TwitterIcon'; const IndexPage = () => { const [timeString, setTimeString] = useState('Morning') useEffect(() => { const hours = new Date().getHours() console.log(new Date()) if (hours < 12) { setTimeString('Morning') } else if (hours >= 12 && hours <= 17) { setTimeString('Afternoon') } else if (hours >= 17 && hours <= 24) { setTimeString('Evening') } }) return ( <>

Good {timeString}! I'm Jack Merrill.

A Graphic and UI Designer and Fullstack Developer from the Windy City.

See my Work or Contact Me

Nice to meet you!

I'm Jack, a Graphic/UI Designer and Fullstack Developer from Chicago. Since I started programming in 2014, I've used Python, NodeJS, HTML and CSS. Nowadays, I prefer to use NextJS, TailwindCSS, and NodeJS. Being a fullstack developer, I've had to create numerous logos and brands for various projects of mine.

Fullstack Developer

I strive to make great things.

What I've made:

SaaS applications, Image websites, Social Networks

Tools I use:

  1. Next.js
  2. Node.js / Express
  3. MongoDB
  4. PostgreSQL

Graphic and UI Design

I like to create designs and brands.

What I enjoy designing:

Brands, Logos, Banners, Headers

Tools I use:

  1. Affinity Designer
  2. TailwindCSS
  3. Bootstrap
  4. React.js

My recent work

Here are a few projects I've been working on!

Stryx

Roblox Group Management made easy

Visit

Snacc.chat

Made in 24 hours at CodeDay, Snacc.chat is a simple social network for programmers alike.

Visit

FRCMS (WIP)

FIRST Robotics Content Management System

Visit

Ricky.cat

My first Next.js project! A place to share my cat. Discontinued.

Visit

My Designs

Here are a few designs I've made!

Want to contact me?

GitHub Profile
Email
Twitter
) } export default IndexPage