Initial commit: Meshkee dashboards monorepo.

Includes business, customer, and super-admin apps with shared packages and production deploy scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Alireza Hassani
2026-07-22 13:48:53 +03:30
co-authored by Cursor
commit f566387c61
509 changed files with 62690 additions and 0 deletions
@@ -0,0 +1,62 @@
import { Briefcase, PlusCircle, FolderTree, Settings } from 'lucide-react'
import { SectionCard } from '../components/SectionCard'
import { Breadcrumbs } from '../components/Breadcrumbs'
import styles from '../components/PageContent.module.css'
const portfolioSections = [
{
icon: Briefcase,
title: 'My Portfolios',
description: 'View, edit and manage all your portfolio items.',
linkText: 'View portfolios',
href: '/portfolios/list',
},
{
icon: PlusCircle,
title: 'Add New Portfolio',
description: 'Create and publish a new portfolio project.',
linkText: 'Add portfolio',
href: '/portfolios/new',
},
{
icon: FolderTree,
title: 'Portfolio Categories',
description: 'Organize portfolio items into categories and subcategories.',
linkText: 'View categories',
href: '/portfolios/categories',
},
{
icon: Settings,
title: 'Settings',
description: 'Configure portfolio comment moderation and display options.',
linkText: 'View settings',
href: '/portfolios/settings',
},
]
export function PortfoliosPage() {
return (
<main className={styles.content}>
<Breadcrumbs
items={[
{ label: 'Dashboard', href: '/' },
{ label: 'Portfolios' },
]}
/>
<div className={styles.pageHeader}>
<div>
<h2 className={styles.pageTitle}>Portfolios</h2>
<p className={styles.pageSubtitle}>
Manage your portfolio items and showcase projects.
</p>
</div>
</div>
<div className={styles.gridHome}>
{portfolioSections.map((section) => (
<SectionCard key={section.title} {...section} />
))}
</div>
</main>
)
}