diff --git a/apps/web/src/app/block/[ht]/page.tsx b/apps/web/src/app/block/[ht]/page.tsx index 497d3b7..d573e41 100644 --- a/apps/web/src/app/block/[ht]/page.tsx +++ b/apps/web/src/app/block/[ht]/page.tsx @@ -28,7 +28,7 @@ const Page : FC = ({ params }) => { }); return ( -
+

Block Summary

diff --git a/apps/web/src/app/blocks/page.tsx b/apps/web/src/app/blocks/page.tsx index 4c867c7..c40dee9 100644 --- a/apps/web/src/app/blocks/page.tsx +++ b/apps/web/src/app/blocks/page.tsx @@ -27,7 +27,7 @@ const Page = () => { }); return ( -
+

Recent Blocks

= ({ params }) => { }); return ( -
+

IBC Channel

diff --git a/apps/web/src/app/ibc/channels/page.tsx b/apps/web/src/app/ibc/channels/page.tsx index 03c7d83..ee03266 100644 --- a/apps/web/src/app/ibc/channels/page.tsx +++ b/apps/web/src/app/ibc/channels/page.tsx @@ -25,7 +25,7 @@ const Page = () => { }); return ( -
+

IBC Channels

= ({ params }) => { }); return ( -
+

IBC Client

diff --git a/apps/web/src/app/ibc/clients/page.tsx b/apps/web/src/app/ibc/clients/page.tsx index 5f56b2f..cec13b5 100644 --- a/apps/web/src/app/ibc/clients/page.tsx +++ b/apps/web/src/app/ibc/clients/page.tsx @@ -25,7 +25,7 @@ const Page = () => { }); return ( -
+

IBC Clients

= ({ params }) => { }); return ( -
+

IBC Connection

diff --git a/apps/web/src/app/ibc/connections/page.tsx b/apps/web/src/app/ibc/connections/page.tsx index c69354c..c46d25f 100644 --- a/apps/web/src/app/ibc/connections/page.tsx +++ b/apps/web/src/app/ibc/connections/page.tsx @@ -25,7 +25,7 @@ const Page = () => { }); return ( -
+

IBC Channels

{ return ( -
+

Available IBC data to explore

diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index 8ae5710..931b451 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -10,7 +10,7 @@ import { import { Button } from "@/components/ui/button"; import { FC } from "react"; -import { getQueryClient } from "@/lib/utils"; +import { cn, getQueryClient } from "@/lib/utils"; import { dehydrate, HydrationBoundary } from "@tanstack/react-query"; import { PreviewTable } from "@/components/PreviewTable"; @@ -30,7 +30,7 @@ interface CardProps { const LandingCard: FC = ({ heading, children, className, buttonText, buttonLink, disabled = false }) => { console.log(heading, disabled); return ( - + {heading} diff --git a/apps/web/src/app/search/[query]/page.tsx b/apps/web/src/app/search/[query]/page.tsx index 7bf3be2..d3836ac 100644 --- a/apps/web/src/app/search/[query]/page.tsx +++ b/apps/web/src/app/search/[query]/page.tsx @@ -28,7 +28,7 @@ const Page : FC = ({ params }) => { }); return ( -

+

Search results

diff --git a/apps/web/src/app/transaction/[hash]/page.tsx b/apps/web/src/app/transaction/[hash]/page.tsx index 2771356..d9c18b0 100644 --- a/apps/web/src/app/transaction/[hash]/page.tsx +++ b/apps/web/src/app/transaction/[hash]/page.tsx @@ -28,7 +28,7 @@ const Page : FC = ({ params }) => { }); return ( -
+

Transaction Summary

diff --git a/apps/web/src/app/transactions/page.tsx b/apps/web/src/app/transactions/page.tsx index c844202..a27de58 100644 --- a/apps/web/src/app/transactions/page.tsx +++ b/apps/web/src/app/transactions/page.tsx @@ -28,7 +28,7 @@ const Page = () => { }); return ( -
+

Recent Transactions

({
- + {table.getHeaderGroups()[0].headers.map((headerGroup) => ( { @@ -66,7 +66,6 @@ export function AttributeTable({ table.getRowModel().rows.map((row) => ( {row.getVisibleCells().map((cell) => ( diff --git a/apps/web/src/components/ui/paginated-data-table.tsx b/apps/web/src/components/ui/paginated-data-table.tsx index b4f8e7d..6350342 100644 --- a/apps/web/src/components/ui/paginated-data-table.tsx +++ b/apps/web/src/components/ui/paginated-data-table.tsx @@ -35,6 +35,7 @@ export function PaginatedDataTable ({ table, columns } : Paginate {table.getRowModel().rows?.length ? ( table.getRowModel().rows.map((row) => ( diff --git a/apps/web/tailwind.config.ts b/apps/web/tailwind.config.ts index 0dff524..0ad83b2 100644 --- a/apps/web/tailwind.config.ts +++ b/apps/web/tailwind.config.ts @@ -30,7 +30,7 @@ module.exports = { background: "hsl(var(--background))", foreground: "hsl(var(--foreground))", primary: { - DEFAULT: "hsl(var(--primary))", + DEFAULT: "hsl(var(--primary) / )", foreground: "hsl(var(--primary-foreground))", }, secondary: { @@ -42,7 +42,7 @@ module.exports = { foreground: "hsl(var(--destructive-foreground))", }, muted: { - DEFAULT: "hsl(var(--muted))", + DEFAULT: "hsl(var(--muted) / )", foreground: "hsl(var(--muted-foreground))", }, accent: { @@ -54,7 +54,7 @@ module.exports = { foreground: "hsl(var(--popover-foreground))", }, card: { - DEFAULT: "hsl(var(--card))", + DEFAULT: "hsl(var(--card) / )", foreground: "hsl(var(--card-foreground))", }, },