Skip to content
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.

Commit

Permalink
Revert main UI
Browse files Browse the repository at this point in the history
  • Loading branch information
paveg committed Mar 23, 2024
1 parent f44b77f commit d7b78dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ export default function RootLayout({ children }: RootLayoutProps) {
className={`min-h-screen bg-white font-sans text-slate-900 antialiased dark:bg-slate-950 dark:text-slate-50 ${fontSans.variable}`}
>
<Providers>
<div className="mx-auto max-w-2xl px-3 py-10">
<div className="mx-auto max-w-2xl px-4 py-10">
<LayoutHeader />
<main className="flex justify-center">{children}</main>
<main>{children}</main>
<LayoutFooter />
</div>
<Analytics />
Expand Down
4 changes: 2 additions & 2 deletions components/custom-image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export const CustomImage = ({
<img
className="rounded-sm"
src={src}
height={height}
width={width}
height={height ?? 600}
width={width ?? 1000}
alt={alt}
{...others}
/>
Expand Down

0 comments on commit d7b78dc

Please sign in to comment.