Skip to content

Commit

Permalink
unbreak build
Browse files Browse the repository at this point in the history
  • Loading branch information
RhysSullivan committed Oct 18, 2024
1 parent 3802b6a commit d687302
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import localFont from "next/font/local";
import "./globals.css";
import { Input } from "@/components/ui/input";
import { Search } from "lucide-react";
import { categories } from "./data";
// import { artSupplies } from "./data";
import Link from "next/link";

const helvetica = localFont({
Expand Down Expand Up @@ -36,7 +36,7 @@ export default function RootLayout({
className={`${helvetica.variable} ${helveticaRoman.variable} ${futura.variable} flex min-h-full flex-col antialiased`}
>
<div className="flex flex-grow flex-col">
<header className="font-futura flex items-center justify-between border-b-2 border-yellow-300 p-4">
<header className="flex items-center justify-between border-b-2 border-yellow-300 p-4 font-futura">
<div className="flex items-center space-x-4">
<Link href="/" className="text-4xl font-bold text-green-800">
NextMaster
Expand Down Expand Up @@ -70,7 +70,7 @@ export default function RootLayout({
Choose a Category
</h2>
<ul className="">
{categories.map((category) => (
{/* {categories.map((category) => (
<li key={category} className="group pb-2 hover:bg-yellow-200">
<a
href="#"
Expand All @@ -79,7 +79,7 @@ export default function RootLayout({
{category}
</a>
</li>
))}
))} */}
</ul>
</aside>
<main className="flex-grow">{children}</main>
Expand Down

0 comments on commit d687302

Please sign in to comment.