-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayoutTest.tsx
34 lines (31 loc) · 938 Bytes
/
LayoutTest.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { Home, Search, UserCircle2 } from "lucide-react";
export const items = [
{ text: "Home", href: "/", icon: Home },
{ text: "Discover", href: "/discover", icon: Search },
{ text: "Profile", href: "/profile", icon: UserCircle2 },
];
export const gridCols = "grid-cols-3";
export function LayoutTestComponent() {
return (
<div className="flex flex-col gap-3 p-4 text-base-700 dark:text-base-700">
<div className="ml-2">Test 1</div>
<img
src="https://source.unsplash.com/random"
alt="Random image"
className="rounded-xl"
/>
<div className="ml-2">Test 2</div>
<img
src="https://source.unsplash.com/random"
alt="Random image"
className="rounded-xl"
/>
<div className="ml-2">Test 3</div>
<img
src="https://source.unsplash.com/random"
alt="Random image"
className="rounded-xl"
/>
</div>
);
}