EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
page.tsx
Go to the documentation of this file.
1"use client";
2import Link from "next/link";
3import { Icon } from '@/contexts/IconContext';
4
5export default function MarketingPage() {
6 return (
7 <div className="min-h-screen bg-surface-2">
8 <div className="max-w-7xl mx-auto p-6">
9 <div className="mb-8">
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>
12 </div>
13
14 <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
15 {/* Campaigns */}
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
21 </p>
22 <Link
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"
25 >
26 Manage Campaigns
27 </Link>
28 </div>
29
30 {/* Promotions */}
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
36 </p>
37 <button className="w-full px-4 py-2 bg-success text-white rounded hover:bg-success/80 transition">
38 New Promotion
39 </button>
40 </div>
41
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 &amp; Interfaces</h2>
46 <p className="text-muted text-sm mb-4">
47 Manage email and SMS communications, logs, and external interfaces
48 </p>
49 <Link
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"
52 >
53 Open Messaging
54 </Link>
55 </div>
56
57 {/* Social Media */}
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
63 </p>
64 <button className="w-full px-4 py-2 bg-accent text-white rounded hover:bg-accent/80 transition">
65 Manage Posts
66 </button>
67 </div>
68
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
75 </p>
76 <Link
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"
79 >
80 View Loyalty
81 </Link>
82 </div>
83
84 {/* Analytics */}
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
90 </p>
91 <Link
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"
94 >
95 View Analytics
96 </Link>
97 </div>
98 </div>
99
100 {/* Info Section */}
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>
104 <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.
109 </p>
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>
114 </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>
118 </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>
122 </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>
126 </div>
127 </div>
128 </div>
129 </div>
130 </div>
131 </div>
132 </div>
133 );
134}