DEV Community

Spencer Tower
Spencer Tower

Posted on • Updated on

How ChatGPT Helped Me Build a Hacker News Clone - pt. 2

This is the second post in a series building out a Hacker News clone using ChatGPT as an assistant, inspired by Building Hacker News with AI, describe a UI and AI builds it for us.

In my previous post, I experimented with writing prompts to ChatGPT, varying in detail, to see what yielded the best results for a header component. In this post I will edit ChatGPT's code to more closely match the Hacker News top bar.


Prompt and Results:

After experimenting, I settled on this prompt for the header component:

"I need to create the header component for a Hacker News clone using Next.js, TypeScript, and Tailwind CSS. I will only be creating the UI.

Visual Design:
- small ycombinator "y" logo - white border, with white "Y"
- title "Hacker News", bold black, on left side of header
- links: to right of title - new, past, comments, ask, show, jobs, submit
- orange background
- each link separated by a |
- "login" link, right side of header"

Result:

Hacker News Header - ChatGPT Code

Here is the code generated by ChatGPT:

const Header: React.FC = () => {
   return (
       <header className="bg-gray-200 p-2 flex items-center">
           <div className="flex items-center">
               <img src="/y18.gif" alt="Y Combinator Logo" className="mr-2" />
               <span className="font-bold text-black">Hacker News</span>
           </div>
           <nav className="ml-4 flex space-x-2">
               <Link href="/">new</Link>
               <span>|</span>
               <Link href="/past">past</Link>
               <span>|</span>
               <Link href="/comments">comments</Link>
               <span>|</span>
               <Link href="/ask">ask</Link>
               <span>|</span>
               <Link href="/show">show</Link>
               <span>|</span>
               <Link href="/jobs">jobs</Link>
               <span>|</span>
               <Link href="/submit">submit</Link>
           </nav>
               <Link href="/login">login</Link>
           </div>
       </header>
   );
};
Enter fullscreen mode Exit fullscreen mode

Edits and Improvements:

This was a good starting point but the code needed some edits to be more efficient and for the design to more closely match the website.

Here are the updates I made:

In the Header component:

  • Made the code DRY
    • Created a new module called links.tsx with an array of header links and mapped them into Header.tsx
  • Adjusted padding and height of the header
  • Edited spacing between links, title, and image
  • Added the y combinator image source
  • Hid the links for mobile view

In the Page file:

  • Adjusted the overall padding around the layout

Updated Code:

Header.tsx

const Header: React.FC = () => {
   return (
       <header className="bg-orange-500 flex items-center justify-between p-3.5 px-1 py-3 h-2.5">
           <div className="flex items-center space-x-2">
               <div>
                   <Image
                       src="https://news.ycombinator.com/y18.svg"
                       className="border border-white-200"
                       alt="y combinator logo"
                       width={20}
                       height={20}
                   />
               </div>
               <h1 className="text-black font-bold">Hacker News</h1>
               <nav className="space-x-1.5 hidden md:flex">
                   {navLinks.map((link, index) => (
                       <Fragment key={link.href}>
                           {index > 0 && <span>|</span>}
                           <Link href={link.href}>{link.label}. </Link>
                       </Fragment>
                   ))}
               </nav>
           </div>
           <Link href="/login">login</Link>
       </header>
   );
};

Enter fullscreen mode Exit fullscreen mode

links.tsx

export const navLinks = [
 { href: '/new', label: 'new' },
 { href: '/past', label: 'past' },
 { href: '/comments', label: 'comments' },
 { href: '/ask', label: 'ask' },
 { href: '/show', label: 'show' },
 { href: '/jobs', label: 'jobs' },
 { href: '/submit', label: 'submit' },
];
Enter fullscreen mode Exit fullscreen mode

page.tsx

const Home: React.FC = () => {
   return (
       <div>
           <Head>
               <title>Hacker News Clone</title>
               <meta
                   name="description"
                   content="A Hacker News clone built with Next.js, TypeScript, and Tailwind CSS"
               />
               <link rel="icon" href="/favicon.ico" />
           </Head>
           <div className="px-36 py-2 font-sans text-sm">
               <Header />
           </div>
       </div>
   );
};

Enter fullscreen mode Exit fullscreen mode

Result:
Hacker News Header - Updated Code

Original design from the Hacker News website:

Hacker News Header - Website


Closing Notes:

The biggest overhaul was making the code DRY. Beyond that, I managed to make the header component much closer to the website with only minor edits. This was done with minimal changes to the code, primarily by adding an image source and making a few tweaks to the Tailwind CSS.

How ChatGPT Helped Me Build a Hacker News Clone - pt. 3

Top comments (0)