Add dashboard, layout components, and CRM scaffolding

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-27 14:25:37 +05:30
parent ffedda86a9
commit 50b120e184
11 changed files with 238 additions and 64 deletions
+18
View File
@@ -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 ...
];