Skip to content

Commit

Permalink
Make home picture bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
abel-castro committed Jan 4, 2025
1 parent d081572 commit acd2369
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/components/posts/post-search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function Search({ placeholder }: { placeholder: string }) {
Search
</label>
<input
className="peer block rounded border border-sky-500 focus:border-sky-700 py-[9px] lg:pl-8 pl-4 text-sm outline-2 dark:bg-slate-800 w-full max-w-xs"
className="peer block rounded border border-sky-500 py-[9px] lg:pl-8 pl-4 text-sm outline-2 dark:bg-slate-800 w-full max-w-xs"
placeholder={placeholder}
onChange={(e) => {
handleSearch(e.target.value);
Expand Down
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default function Home() {
className="max-w-md mask mask-hexagon shadow-2xl p-6"
src={bananaLifting}
alt="My younger self lifting bananas"
width={600}
height={600}
width={800}
height={800}
/>
<div>
<p className="text-xl">
Expand Down
10 changes: 5 additions & 5 deletions tests/unit-tests/__snapshots__/pages.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exports[`Blog page > Blog page component should match the snapshot 1`] = `
Search
</label>
<input
class="peer block rounded border border-sky-500 focus:border-sky-700 py-[9px] lg:pl-8 pl-4 text-sm outline-2 dark:bg-slate-800 w-full max-w-xs"
class="peer block rounded border border-sky-500 py-[9px] lg:pl-8 pl-4 text-sm outline-2 dark:bg-slate-800 w-full max-w-xs"
placeholder="Search in posts..."
/>
<svg
Expand Down Expand Up @@ -289,12 +289,12 @@ exports[`Home page > Home page component should match the snapshot 1`] = `
class="max-w-md mask mask-hexagon shadow-2xl p-6"
data-nimg="1"
decoding="async"
height="600"
height="800"
loading="lazy"
src="/_next/image?url=%2Fpublic%2Fimages%2Fbanana-lifting.jpg&w=1200&q=75"
srcset="/_next/image?url=%2Fpublic%2Fimages%2Fbanana-lifting.jpg&w=640&q=75 1x, /_next/image?url=%2Fpublic%2Fimages%2Fbanana-lifting.jpg&w=1200&q=75 2x"
src="/_next/image?url=%2Fpublic%2Fimages%2Fbanana-lifting.jpg&w=1920&q=75"
srcset="/_next/image?url=%2Fpublic%2Fimages%2Fbanana-lifting.jpg&w=828&q=75 1x, /_next/image?url=%2Fpublic%2Fimages%2Fbanana-lifting.jpg&w=1920&q=75 2x"
style="color: transparent;"
width="600"
width="800"
/>
<div>
<p
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exports[`Search Component > should render the search component matching the snap
Search
</label>
<input
class="peer block rounded border border-sky-500 focus:border-sky-700 py-[9px] lg:pl-8 pl-4 text-sm outline-2 dark:bg-slate-800 w-full max-w-xs"
class="peer block rounded border border-sky-500 py-[9px] lg:pl-8 pl-4 text-sm outline-2 dark:bg-slate-800 w-full max-w-xs"
placeholder="Search posts"
/>
<svg
Expand Down

0 comments on commit acd2369

Please sign in to comment.