Skip to content

Commit

Permalink
type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanPreusse committed Jan 5, 2024
1 parent 0321f8e commit 61cf0ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default async function AboutPage({

return (
<div className="space-y-5 max-w-7xl m-auto min-h-screen">
<img className="object-cover w-full h-52 rounded-[20px] aspect-video" src={postDetails.coverImage} />
<img className="object-cover w-full h-52 xl:rounded-[20px] aspect-video" src={postDetails.coverImage} />

<div>
<div className="text-center space-y-5 text-sm mx-auto mt-3">
Expand Down
2 changes: 1 addition & 1 deletion app/articles/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default async function Page({

return (
<div className="space-y-5 max-w-7xl m-auto min-h-screen">
<img className="object-cover w-full h-52 lg:rounded-[20px] aspect-video" src={postDetails.coverImage} />
<img className="object-cover w-full h-52 xl:rounded-[20px] aspect-video" src={postDetails.coverImage} />

<div>
<div className="text-center space-y-5 text-sm mx-auto mt-3">
Expand Down
15 changes: 2 additions & 13 deletions components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,15 @@ const Header = () => {
<div className="max-w-5xl flex flex-row justify-between items-center m-auto px-4">
{/* Logo */}
<div className="flex flex-row items-center">
<div>
<Link className="hidden sm:block" href="/">
<Image
src="/logo.avif"
width={28}
height={28}
alt="AnalyticsRoundtable"
/>
</Link>

<Link className="sm:hidden" href="/">
<Link className="" href="/">
<Image
src="/Logo.avif"
width={28}
height={28}
alt="AnalyticsRoundtable"
/>
</Link>
</div>
<Link className="hidden sm:block ml-1 font-medium text-gray-800 " href="/">
<Link className="hidden sm:block ml-1 font-medium text-gray-800" href="/">
Analytics Roundtable
</Link>
</div>
Expand Down

0 comments on commit 61cf0ee

Please sign in to comment.