2import Link from "next/link";
3import { Icon } from '@/contexts/IconContext';
5export default function MarketingPage() {
7 <div className="min-h-screen bg-surface-2">
8 <div className="max-w-7xl mx-auto p-6">
10 <h1 className="text-3xl font-bold text-text mb-2">Marketing Programs</h1>
11 <p className="text-muted">Manage campaigns, promotions, and customer engagement</p>
14 <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
16 <div className="bg-surface rounded-lg shadow-sm border border-border p-6">
17 <div className="text-4xl mb-4"><Icon name="campaign" size={40} /></div>
18 <h2 className="text-xl font-bold text-text mb-2">Campaigns</h2>
19 <p className="text-muted text-sm mb-4">
20 Create and manage marketing campaigns across multiple channels
23 href="/marketing/campaigns"
24 className="block w-full px-4 py-2 bg-brand text-white rounded hover:bg-brand/90 transition text-center"
31 <div className="bg-surface rounded-lg shadow-sm border border-border p-6">
32 <div className="text-4xl mb-4"><Icon name="card_giftcard" size={40} /></div>
33 <h2 className="text-xl font-bold text-text mb-2">Promotions</h2>
34 <p className="text-muted text-sm mb-4">
35 Set up discounts, special offers, and promotional pricing
37 <button className="w-full px-4 py-2 bg-success text-white rounded hover:bg-success/80 transition">
42 {/* Email & Interfaces */}
43 <div className="bg-surface rounded-lg shadow-sm border border-border p-6">
44 <div className="text-4xl mb-4"><Icon name="email" size={40} /></div>
45 <h2 className="text-xl font-bold text-text mb-2">Email & Interfaces</h2>
46 <p className="text-muted text-sm mb-4">
47 Manage email and SMS communications, logs, and external interfaces
50 href="/marketing/messaging"
51 className="block w-full px-4 py-2 bg-info text-white rounded hover:bg-info/80 transition text-center"
58 <div className="bg-surface rounded-lg shadow-sm border border-border p-6">
59 <div className="text-4xl mb-4"><Icon name="share" size={40} /></div>
60 <h2 className="text-xl font-bold text-text mb-2">Social Media</h2>
61 <p className="text-muted text-sm mb-4">
62 Manage your social media presence and engagement
64 <button className="w-full px-4 py-2 bg-accent text-white rounded hover:bg-accent/80 transition">
69 {/* Loyalty Programs */}
70 <div className="bg-surface rounded-lg shadow-sm border border-border p-6">
71 <div className="text-4xl mb-4"><Icon name="star" size={40} /></div>
72 <h2 className="text-xl font-bold text-text mb-2">Loyalty Programs</h2>
73 <p className="text-muted text-sm mb-4">
74 Reward your best customers and increase retention
77 href="/pages/customers/loyalty"
78 className="block w-full px-4 py-2 bg-warn text-white rounded hover:bg-warn/80 transition text-center"
85 <div className="bg-surface rounded-lg shadow-sm border border-border p-6">
86 <div className="text-4xl mb-4"><Icon name="bar_chart" size={40} /></div>
87 <h2 className="text-xl font-bold text-text mb-2">Campaign Analytics</h2>
88 <p className="text-muted text-sm mb-4">
89 Track performance and ROI of your marketing efforts
92 href="/pages/reports/analytics"
93 className="block w-full px-4 py-2 bg-brand2 text-white rounded hover:bg-brand2/80 transition text-center"
101 <div className="mt-8 bg-surface border border-border rounded-lg p-6">
102 <div className="flex items-start">
103 <div className="text-3xl mr-4"><Icon name="construction" size={32} /></div>
105 <h3 className="font-semibold text-text mb-2">Marketing Suite Under Development</h3>
106 <p className="text-text text-sm mb-3">
107 The complete marketing platform is being built with features for campaign management,
108 automated email marketing, social media integration, and detailed analytics.
110 <div className="grid grid-cols-2 md:grid-cols-4 gap-3 mt-4">
111 <div className="bg-surface rounded p-2 text-center text-xs">
112 <div className="font-semibold text-text">Coming Soon</div>
113 <div className="text-muted">Email Templates</div>
115 <div className="bg-surface rounded p-2 text-center text-xs">
116 <div className="font-semibold text-text">Coming Soon</div>
117 <div className="text-muted">SMS Marketing</div>
119 <div className="bg-surface rounded p-2 text-center text-xs">
120 <div className="font-semibold text-text">Coming Soon</div>
121 <div className="text-muted">A/B Testing</div>
123 <div className="bg-surface rounded p-2 text-center text-xs">
124 <div className="font-semibold text-text">Coming Soon</div>
125 <div className="text-muted">Automation</div>