Skip to content

Commit 2ebe918

Browse files
committed
️🚏✨ ↝ [SGV2-13 SGV2-10 #104 #105]: well no longer feeling roger-roger
1 parent c7374db commit 2ebe918

File tree

3 files changed

+36
-23
lines changed

3 files changed

+36
-23
lines changed

components/Content/Visuals/Bento.tsx

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
"use client";
22
import { cn } from "../../../lib/uitls";
33
import React from "react";
4-
// import { BentoGrid, BentoGridItem } from "../../_Core/ui/bento-grid";
5-
// import {
6-
// IconBoxAlignRightFilled,
7-
// IconClipboardCopy,
8-
// IconFileBroken,
9-
// IconSignature,
10-
// IconTableColumn,
11-
// } from "@tabler/icons-react";
4+
import { BentoGrid, BentoGridItem } from "../../_Core/ui/bento-grid";
5+
import {
6+
IconBoxAlignRightFilled,
7+
IconClipboardCopy,
8+
IconFileBroken,
9+
IconSignature,
10+
IconTableColumn,
11+
} from "@tabler/icons-react";
1212
import { motion } from "framer-motion";
1313
import Image from "next/image";
1414
import { ItemsVerticalList } from "../Inventory/UserOwnedItems";
@@ -32,19 +32,19 @@ export function BentoGridThirdDemo() {
3232
}
3333

3434
export function BentoGridMobileDemo() {
35-
return ( <></>
36-
// <BentoGrid className="max-w-4xl mx-auto md:auto-rows-[20rem]">
37-
// {mobileItems.map((item, i) => (
38-
// <BentoGridItem
39-
// key={i}
40-
// title={item.title}
41-
// description={item.description}
42-
// header={item.header}
43-
// className={cn("[&>p:text-lg]", item.className)}
44-
// icon={item.icon}
45-
// />
46-
// ))}
47-
// </BentoGrid>
35+
return (
36+
<BentoGrid className="max-w-4xl mx-auto md:auto-rows-[20rem]">
37+
{mobileItems.map((item, i) => (
38+
<BentoGridItem
39+
key={i}
40+
title={item.title}
41+
description={item.description}
42+
header={item.header}
43+
className={cn("[&>p:text-lg]", item.className)}
44+
icon={item.icon}
45+
/>
46+
))}
47+
</BentoGrid>
4848
);
4949
}
5050

@@ -315,7 +315,7 @@ const mobileItems = [
315315
),
316316
header: <SkeletonOne />,
317317
className: "md:col-span-1",
318-
// icon: <IconClipboardCopy className="h-4 w-4 text-neutral-500" />,
318+
icon: <IconClipboardCopy className="h-4 w-4 text-neutral-500" />,
319319
},
320320
{
321321
title: "",
@@ -324,7 +324,7 @@ const mobileItems = [
324324
),
325325
header: <SkeletonFour />,
326326
className: "md:col-span-2",
327-
// icon: <IconTableColumn className="h-4 w-4 text-neutral-500" />,
327+
icon: <IconTableColumn className="h-4 w-4 text-neutral-500" />,
328328
},
329329
];
330330

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"@supabase/auth-ui-react": "^0.2.6",
4444
"@supabase/supabase-js": "^2.13.1",
4545
"@supabase/ui": "^0.36.5",
46+
"@tabler/icons-react": "^3.2.0",
4647
"@types/js-cookie": "^3.0.3",
4748
"@types/rc-slider": "^9.3.1",
4849
"@types/rc-tooltip": "^3.7.7",

yarn.lock

+12
Original file line numberDiff line numberDiff line change
@@ -2498,6 +2498,18 @@
24982498
"@swc/counter" "^0.1.3"
24992499
tslib "^2.4.0"
25002500

2501+
"@tabler/icons-react@^3.2.0":
2502+
version "3.2.0"
2503+
resolved "https://registry.yarnpkg.com/@tabler/icons-react/-/icons-react-3.2.0.tgz#1b8d4059672ec2999f29f9aea03c44f00084ce66"
2504+
integrity sha512-b1mZT1XpZrzvbM+eFe1YbYbxkzgJ18tM4knZKqXh0gnHDZ6XVLIH3TzJZ3HZ7PTkUqZLZ7XcGae3qQVGburlBw==
2505+
dependencies:
2506+
"@tabler/icons" "3.2.0"
2507+
2508+
"@tabler/icons@3.2.0":
2509+
version "3.2.0"
2510+
resolved "https://registry.yarnpkg.com/@tabler/icons/-/icons-3.2.0.tgz#4adcde021943d50f2c228dab6145fd9c9b639f85"
2511+
integrity sha512-h8GQ2rtxgiSjltrVz4vcopAxTPSpUSUi5nBfJ09H3Bk4fJk6wZ/dVUjzhv/BHfDwGTkAxZBiYe/Q/T95cPeg5Q==
2512+
25012513
"@tailwindcss/forms@^0.5.3":
25022514
version "0.5.7"
25032515
resolved "https://registry.yarnpkg.com/@tailwindcss/forms/-/forms-0.5.7.tgz#db5421f062a757b5f828bc9286ba626c6685e821"

0 commit comments

Comments
 (0)