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

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr committed Mar 13, 2024
1 parent de81c1e commit 2edcda7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useState } from "react";
import placeholderSVGURL from "./assets/placeholder.svg"

function AppBoard() {
return (
Expand All @@ -11,7 +12,7 @@ function AppBoard() {
alt="Card 1"
className="aspect-[1.4] object-cover border border-gray-100 dark:border-gray-800"
height={150}
src="/placeholder.svg"
src={placeholderSVGURL}
width={150}
/>
</div>
Expand All @@ -20,7 +21,7 @@ function AppBoard() {
alt="Card 2"
className="aspect-[1.4] object-cover border border-gray-100 dark:border-gray-800"
height={150}
src="/placeholder.svg"
src={placeholderSVGURL}
width={150}
/>
</div>
Expand All @@ -29,7 +30,7 @@ function AppBoard() {
alt="Card 3"
className="aspect-[1.4] object-cover border border-gray-100 dark:border-gray-800"
height={150}
src="/placeholder.svg"
src={placeholderSVGURL}
width={150}
/>
</div>
Expand All @@ -38,7 +39,7 @@ function AppBoard() {
alt="Card 4"
className="aspect-[1.4] object-cover border border-gray-100 dark:border-gray-800"
height={150}
src="/placeholder.svg"
src={placeholderSVGURL}
width={150}
/>
</div>
Expand All @@ -53,7 +54,7 @@ function AppBoard() {
alt="Card 1"
className="aspect-[1.4] object-cover border border-gray-100 dark:border-gray-800"
height={150}
src="/placeholder.svg"
src={placeholderSVGURL}
width={150}
/>
</div>
Expand All @@ -62,7 +63,7 @@ function AppBoard() {
alt="Card 2"
className="aspect-[1.4] object-cover border border-gray-100 dark:border-gray-800"
height={150}
src="/placeholder.svg"
src={placeholderSVGURL}
width={150}
/>
</div>
Expand All @@ -71,7 +72,7 @@ function AppBoard() {
alt="Card 3"
className="aspect-[1.4] object-cover border border-gray-100 dark:border-gray-800"
height={150}
src="/placeholder.svg"
src={placeholderSVGURL}
width={150}
/>
</div>
Expand All @@ -80,7 +81,7 @@ function AppBoard() {
alt="Card 4"
className="aspect-[1.4] object-cover border border-gray-100 dark:border-gray-800"
height={150}
src="/placeholder.svg"
src={placeholderSVGURL}
width={150}
/>
</div>
Expand Down
File renamed without changes

0 comments on commit 2edcda7

Please sign in to comment.