Add dashboard, layout components, and CRM scaffolding
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
export const siteConfig = {
|
||||
name: "LynkedUpPro CRM",
|
||||
shortName: "LynkedUpPro",
|
||||
description: "CRM to manage leads, contacts, deals and your sales pipeline.",
|
||||
url: "https://lynkeduppro.com",
|
||||
};
|
||||
|
||||
export type NavItem = {
|
||||
title: string;
|
||||
href: string;
|
||||
icon?: string;
|
||||
};
|
||||
|
||||
/** Sidebar / main navigation. Add page routes here as we build them. */
|
||||
export const navItems: NavItem[] = [
|
||||
{ title: "Dashboard", href: "/dashboard", icon: "LayoutDashboard" },
|
||||
// pages aayenge yahan: Leads, Contacts, Deals, Tasks, Settings ...
|
||||
];
|
||||
Reference in New Issue
Block a user