Page Optimizations
타이틀 등 주요 정보가 빠져있다.
function HomePage(props) {
return (
<div>
<Head>
<title>NextJS Events</title>
<meta
name="description"
content="Find a lot of great events that allow you to evolve haha"
/>
</Head>
<EventList items={props.events} />
</div>
);
}