Page Optimizations

Keep using Events project

211. Analyzing the Need for "head" Metadata

Before

Screenshot 2024-03-13 at 7.26.48 AM.png

타이틀 등 주요 정보가 빠져있다.

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>
  );
}

Untitled