25 lines
739 B
TypeScript
25 lines
739 B
TypeScript
import BarChartOne from "@/components/charts/bar/BarChartOne";
|
|
import ComponentCard from "@/components/common/ComponentCard";
|
|
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
|
|
import { Metadata } from "next";
|
|
import React from "react";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Next.js Bar Chart | TailAdmin - Next.js Dashboard Template",
|
|
description:
|
|
"This is Next.js Bar Chart page for TailAdmin - Next.js Tailwind CSS Admin Dashboard Template",
|
|
};
|
|
|
|
export default function page() {
|
|
return (
|
|
<div>
|
|
<PageBreadcrumb pageTitle="Bar Chart" />
|
|
<div className="space-y-6">
|
|
<ComponentCard title="Bar Chart 1">
|
|
<BarChartOne />
|
|
</ComponentCard>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|