Skip to content

Commit

Permalink
Fix home picture size in mobile devices
Browse files Browse the repository at this point in the history
  • Loading branch information
abel-castro committed Jan 5, 2025
1 parent 4fe3422 commit 5f1de28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default async function BlogHome({ searchParams }: HomeProps) {
query: query,
};
const { posts, totalPages } =
await activeDataProvider.getAllFromStorage(options);
await activeDataProvider.getAll(options);

return (
<>
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function Home() {
>
<div className="hero-content flex-col md:flex-row-reverse">
<Image
className="max-w-md mask mask-hexagon shadow-2xl p-6"
className="w-[300px] sm:w-[400px] md:w-[500px] lg:w-[600px] xl:w-[800px] mask mask-hexagon shadow-2xl p-6"
src={bananaLifting}
alt="My younger self lifting bananas"
width={800}
Expand Down

0 comments on commit 5f1de28

Please sign in to comment.