Skip to content

Commit

Permalink
update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
IanHollow committed May 13, 2024
1 parent eb1cde4 commit ca731cc
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -46,22 +46,23 @@ export default function Home() {
Locations
</h1>


<ul className="flex font-medium text-2xl text-[#003C6C] flex items-center justify-center pb-5">
{
[["Dining Halls", "#"], ["Markets", "#"], ["Cafes & Other", "#"]].map(([category, href]: Array<string>, i) => (
<li key={i} className="">
<a
href={href}
className="px-10 hover:underline decoration-yellow-400 underline-offset-8 decoration-4">
{category}
</a>
</li>
))
}
{[
["Dining Halls", "#"],
["Markets", "#"],
["Cafes & Other", "#"],
].map(([category, href]: Array<string>, i) => (
<li key={i} className="">
<a
href={href}
className="px-10 hover:underline decoration-yellow-400 underline-offset-8 decoration-4"
>
{category}
</a>
</li>
))}
</ul>


<h3 className="w-full">
<ul className="">
{dhs.map((dh, i) => (

0 comments on commit ca731cc

Please sign in to comment.