Skip to content

Commit

Permalink
updated to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
neajmorshed0 committed Feb 26, 2025
1 parent 3f69025 commit 12afc76
Show file tree
Hide file tree
Showing 29 changed files with 661 additions and 634 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@react-jvectormap/core": "^1.0.4",
"@react-jvectormap/world": "^1.1.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/postcss": "^4.0.9",
"apexcharts": "^4.3.0",
"autoprefixer": "^10.4.20",
"flatpickr": "^4.6.13",
Expand All @@ -43,7 +44,7 @@
"eslint": "^9",
"eslint-config-next": "15.1.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tailwindcss": "^4.0.0",
"typescript": "^5"
}
}
3 changes: 1 addition & 2 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
'@tailwindcss/postcss': {},
},
};
11 changes: 9 additions & 2 deletions src/app/(admin)/(others-pages)/(tables)/basic-tables/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
import ComponentCard from "@/components/common/ComponentCard";
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
import BasicTableOne from "@/components/tables/BasicTableOne";

import { Metadata } from "next";
import React from "react";

export const metadata: Metadata = {
title: "Next.js Basic Table | TailAdmin - Next.js Dashboard Template",
description:
"This is Next.js Basic Table page for TailAdmin Tailwind CSS Admin Dashboard Template",
// other metadata
};

export default function BasicTables() {
return (
<div>
<PageBreadcrumb pageTitle="Task Kanban" />
<PageBreadcrumb pageTitle="Basic Table" />
<div className="space-y-6">
<ComponentCard title="Basic Table 1">
<BasicTableOne />
Expand Down
2 changes: 1 addition & 1 deletion src/app/(admin)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function AdminLayout({
{/* Header */}
<AppHeader />
{/* Page Content */}
<div className="p-4 mx-auto max-w-screen-2xl md:p-6">{children}</div>
<div className="p-4 mx-auto max-w-(--breakpoint-2xl) md:p-6">{children}</div>
</div>
</div>
);
Expand Down
Loading

0 comments on commit 12afc76

Please sign in to comment.