Skip to content

Commit

Permalink
fix charts page title
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPereira committed May 22, 2024
1 parent c59722c commit 1c42dc1
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions packages/nextjs/app/charts/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "chart.js/auto";
import type { NextPage } from "next";
import { Bar } from "react-chartjs-2";
import { formatEther } from "viem";
import { SkeletonLoader } from "~~/components/streamogator";
import { PageTitle, SkeletonLoader } from "~~/components/streamogator";

const options = {
responsive: true,
Expand Down Expand Up @@ -47,12 +47,7 @@ const Charts: NextPage = () => {
return (
<section className="flex justify-center">
<div className="flex flex-col justify-center items-center gap-10 my-14">
<div className="relative">
<div className="absolute left-0 text-5xl mt-2">📊</div>
<h1 className="text-6xl mb-0 font-paytone px-16">Charts</h1>
</div>
<div className="text-2xl">Vizualize stream contract data with interactive charts</div>

<PageTitle title="Charts" emoji="📊" description="Vizualize stream contract data with colorful charts" />
{loading ? (
<div className="w-[888px] h-[440px]">
<SkeletonLoader />
Expand Down

0 comments on commit 1c42dc1

Please sign in to comment.