| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=393, initial-scale=1, user-scalable=no">
- <title>AI Social Agent - Dashboard</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
- background: #0F172A;
- color: #f1f5f9;
- width: 393px;
- min-height: 852px;
- overflow-x: hidden;
- }
- .canvas {
- position: relative;
- width: 393px;
- min-height: 852px;
- background: #0F172A;
- overflow: hidden;
- }
- /* Atmosphere - Blurred gradient blobs */
- .blob {
- position: absolute;
- border-radius: 50%;
- filter: blur(80px);
- opacity: 0.35;
- }
- .blob-1 {
- width: 280px;
- height: 280px;
- background: #6366F1;
- top: -80px;
- right: -60px;
- }
- .blob-2 {
- width: 200px;
- height: 200px;
- background: #A855F7;
- bottom: 200px;
- left: -50px;
- }
- .blob-3 {
- width: 150px;
- height: 150px;
- background: #6366F1;
- top: 400px;
- right: -30px;
- }
- .content {
- position: relative;
- z-index: 1;
- padding: 0 20px 100px;
- }
- /* Dynamic Island */
- .dynamic-island {
- width: 126px;
- height: 37px;
- background: #000;
- border-radius: 20px;
- margin: 12px auto 20px;
- flex-shrink: 0;
- }
- /* Header */
- .header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 24px;
- }
- .header h1 {
- font-size: 24px;
- font-weight: 600;
- letter-spacing: -0.5px;
- }
- .avatar {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- background: linear-gradient(135deg, #6366F1 0%, #A855F7 100%);
- border: 2px solid rgba(255,255,255,0.3);
- }
- /* Glassmorphism base – refined slate glass */
- .glass {
- background: rgba(30, 41, 59, 0.7);
- backdrop-filter: blur(20px);
- -webkit-backdrop-filter: blur(20px);
- border: 1px solid rgba(100, 116, 139, 0.4);
- border-radius: 24px;
- box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
- }
- /* Hero Card */
- .hero-card {
- padding: 24px;
- margin-bottom: 16px;
- }
- .hero-card .label {
- font-size: 14px;
- color: #94A3B8;
- margin-bottom: 8px;
- }
- .hero-card .value-row {
- display: flex;
- align-items: center;
- gap: 12px;
- }
- .hero-card .value {
- font-size: 36px;
- font-weight: 700;
- color: #f8fafc;
- }
- .badge {
- background: rgba(34, 197, 94, 0.3);
- color: #22c55e;
- padding: 6px 12px;
- border-radius: 12px;
- font-size: 14px;
- font-weight: 600;
- }
- /* Stats Grid */
- .stats-grid {
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- gap: 12px;
- margin-bottom: 16px;
- }
- .stat-card {
- padding: 16px 12px;
- text-align: center;
- }
- .stat-card .stat-value {
- font-size: 22px;
- font-weight: 700;
- margin-bottom: 4px;
- color: #f8fafc;
- }
- .stat-card .stat-label {
- font-size: 12px;
- color: #94A3B8;
- }
- /* Trend Section – aligned with content */
- .trend-card {
- padding: 20px;
- margin-bottom: 16px;
- width: 100%;
- box-sizing: border-box;
- }
- .trend-card h3 {
- font-size: 16px;
- font-weight: 600;
- margin-bottom: 16px;
- color: #f8fafc;
- }
- .chart-container {
- height: 80px;
- display: flex;
- align-items: flex-end;
- gap: 8px;
- }
- .chart-bar {
- flex: 1;
- min-height: 12px;
- background: linear-gradient(180deg, #6366F1 0%, #A855F7 100%);
- border-radius: 6px 6px 0 0;
- }
- .chart-bar:nth-child(1) { height: 25%; }
- .chart-bar:nth-child(2) { height: 35%; }
- .chart-bar:nth-child(3) { height: 45%; }
- .chart-bar:nth-child(4) { height: 55%; }
- .chart-bar:nth-child(5) { height: 70%; }
- .chart-bar:nth-child(6) { height: 85%; }
- .chart-bar:nth-child(7) { height: 100%; }
- /* Video List */
- .video-section h3 {
- font-size: 18px;
- font-weight: 600;
- margin-bottom: 12px;
- padding: 0 4px;
- color: #f8fafc;
- }
- .video-item {
- display: flex;
- gap: 12px;
- padding: 12px;
- border-radius: 24px;
- margin-bottom: 8px;
- align-items: center;
- }
- .video-thumb {
- width: 64px;
- height: 48px;
- border-radius: 8px;
- background: linear-gradient(135deg, rgba(99,102,241,0.4) 0%, rgba(168,85,247,0.4) 100%);
- flex-shrink: 0;
- }
- .video-info {
- flex: 1;
- min-width: 0;
- }
- .video-title {
- font-size: 14px;
- font-weight: 600;
- margin-bottom: 4px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- color: #f8fafc;
- }
- .video-stats {
- display: flex;
- gap: 12px;
- font-size: 12px;
- color: #94A3B8;
- }
- .video-stats span {
- display: flex;
- align-items: center;
- gap: 4px;
- }
- /* iOS Tab Bar */
- .tab-bar {
- position: fixed;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 393px;
- max-width: 100%;
- height: 83px;
- padding-bottom: 34px;
- display: flex;
- justify-content: space-around;
- align-items: center;
- background: rgba(15, 23, 42, 0.9);
- backdrop-filter: blur(20px);
- -webkit-backdrop-filter: blur(20px);
- border-top: 1px solid rgba(100, 116, 139, 0.3);
- }
- .tab-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 4px;
- color: #94A3B8;
- font-size: 10px;
- }
- .tab-item.active {
- color: #f8fafc;
- }
- .tab-icon {
- width: 28px;
- height: 28px;
- background: rgba(255,255,255,0.15);
- border-radius: 8px;
- }
- .tab-item.active .tab-icon {
- background: linear-gradient(135deg, #6366F1 0%, #A855F7 100%);
- }
- /* Generate Report – primary CTA */
- .btn-generate-report {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- max-width: 353px;
- height: 48px;
- margin: 0 20px 16px;
- background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
- border: none;
- border-radius: 16px;
- color: #fff;
- font-size: 16px;
- font-weight: 600;
- cursor: pointer;
- box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
- transition: transform 0.15s ease, box-shadow 0.15s ease;
- }
- .btn-generate-report:hover {
- transform: translateY(-1px);
- box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
- }
- .btn-generate-report:active {
- transform: translateY(0);
- }
- </style>
- </head>
- <body>
- <div class="canvas">
- <!-- Atmosphere blobs -->
- <div class="blob blob-1"></div>
- <div class="blob blob-2"></div>
- <div class="blob blob-3"></div>
- <div class="content">
- <!-- Dynamic Island -->
- <div class="dynamic-island"></div>
- <!-- Header -->
- <header class="header">
- <h1>AI Insight</h1>
- <div class="avatar"></div>
- </header>
- <!-- Generate Report CTA -->
- <button class="btn-generate-report">Generate Report</button>
- <!-- Hero Card -->
- <div class="glass hero-card">
- <div class="label">Total Followers</div>
- <div class="value-row">
- <span class="value">128.5K</span>
- <span class="badge">+1.2K</span>
- </div>
- </div>
- <!-- Stats Grid -->
- <div class="stats-grid">
- <div class="glass stat-card">
- <div class="stat-value">892K</div>
- <div class="stat-label">Plays</div>
- </div>
- <div class="glass stat-card">
- <div class="stat-value">42.1K</div>
- <div class="stat-label">Likes</div>
- </div>
- <div class="glass stat-card">
- <div class="stat-value">8.3K</div>
- <div class="stat-label">Shares</div>
- </div>
- </div>
- <!-- Trend Section -->
- <div class="glass trend-card">
- <h3>Fan Trend (7d)</h3>
- <div class="chart-container">
- <div class="chart-bar"></div>
- <div class="chart-bar"></div>
- <div class="chart-bar"></div>
- <div class="chart-bar"></div>
- <div class="chart-bar"></div>
- <div class="chart-bar"></div>
- <div class="chart-bar"></div>
- </div>
- </div>
- <!-- Video List – aligned with Trend -->
- <section class="video-section">
- <h3>Recent Videos</h3>
- <div class="glass video-item">
- <div class="video-thumb"></div>
- <div class="video-info">
- <div class="video-title">Morning Routine & Productivity Tips</div>
- <div class="video-stats">
- <span>▶ 12.4K</span>
- <span>♥ 892</span>
- <span>↗ 156</span>
- </div>
- </div>
- </div>
- <div class="glass video-item">
- <div class="video-thumb"></div>
- <div class="video-info">
- <div class="video-title">AI Tools That Changed My Workflow</div>
- <div class="video-stats">
- <span>▶ 28.1K</span>
- <span>♥ 2.1K</span>
- <span>↗ 432</span>
- </div>
- </div>
- </div>
- <div class="glass video-item">
- <div class="video-thumb"></div>
- <div class="video-info">
- <div class="video-title">Vlog: Weekend in the City</div>
- <div class="video-stats">
- <span>▶ 5.2K</span>
- <span>♥ 340</span>
- <span>↗ 89</span>
- </div>
- </div>
- </div>
- </section>
- </div>
- <!-- iOS Tab Bar -->
- <nav class="tab-bar">
- <div class="tab-item active">
- <div class="tab-icon"></div>
- Dashboard
- </div>
- <div class="tab-item">
- <div class="tab-icon"></div>
- Content
- </div>
- <div class="tab-item">
- <div class="tab-icon"></div>
- AI Chat
- </div>
- <div class="tab-item">
- <div class="tab-icon"></div>
- Settings
- </div>
- </nav>
- </div>
- </body>
- </html>
|