Skip to content

Commit

Permalink
settings routes
Browse files Browse the repository at this point in the history
  • Loading branch information
benorloff committed Mar 11, 2024
1 parent ab20cb3 commit 61aa087
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
1 change: 0 additions & 1 deletion app/(platform)/(dashboard)/settings/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
9 changes: 9 additions & 0 deletions app/(platform)/(dashboard)/settings/notifications/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const SettingsNotificationsPage = () => {
return (
<div>
Notification settings will go here.
</div>
);
};

export default SettingsNotificationsPage;
2 changes: 1 addition & 1 deletion components/billing/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ module.exports = {
DEFAULT: colors.gray[300],
foreground: colors.gray[800],
},
}
}
},
},
borderRadius: {
lg: "var(--radius)",
Expand All @@ -107,6 +106,7 @@ module.exports = {
fontFamily: {
sans: ["DM Sans", "sans-serif"],
}
},
},
plugins: [require("tailwindcss-animate")]
}

0 comments on commit 61aa087

Please sign in to comment.