diff --git a/app/(platform)/(dashboard)/settings/layout.tsx b/app/(platform)/(dashboard)/settings/layout.tsx
index 741e231..892e4ec 100644
--- a/app/(platform)/(dashboard)/settings/layout.tsx
+++ b/app/(platform)/(dashboard)/settings/layout.tsx
@@ -9,7 +9,6 @@ export default function SettingsLayout({
const navItems = [
{ label: "Overview", path: "" },
- { label: "Account", path: "account"},
{ label: "Team", path: "team" },
{ label: "Billing", path: "billing" },
{ label: "Notifications", path: "notifications" },
diff --git a/app/(platform)/(dashboard)/settings/notifications/page.tsx b/app/(platform)/(dashboard)/settings/notifications/page.tsx
new file mode 100644
index 0000000..42abce0
--- /dev/null
+++ b/app/(platform)/(dashboard)/settings/notifications/page.tsx
@@ -0,0 +1,9 @@
+const SettingsNotificationsPage = () => {
+ return (
+
+ Notification settings will go here.
+
+ );
+};
+
+export default SettingsNotificationsPage;
\ No newline at end of file
diff --git a/components/billing/columns.tsx b/components/billing/columns.tsx
index bbefd99..aa386b9 100644
--- a/components/billing/columns.tsx
+++ b/components/billing/columns.tsx
@@ -2,7 +2,7 @@
import { ColumnDef } from "@tanstack/react-table";
import { Button } from "@/components/ui/button";
-import { ArrowUpDown, Download } from "lucide-react";
+import { ArrowUpDown, Download, DownloadCloud, DownloadCloudIcon } from "lucide-react";
import { Badge } from "@/components/ui/badge";
import { redirect } from "next/navigation";
diff --git a/tailwind.config.ts b/tailwind.config.ts
index 3034e34..d2668da 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -82,8 +82,7 @@ module.exports = {
DEFAULT: colors.gray[300],
foreground: colors.gray[800],
},
- }
- }
+ },
},
borderRadius: {
lg: "var(--radius)",
@@ -107,6 +106,7 @@ module.exports = {
fontFamily: {
sans: ["DM Sans", "sans-serif"],
}
+ },
},
plugins: [require("tailwindcss-animate")]
}
\ No newline at end of file