Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 7 | Author: karbonsites
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ViralSight - Analytics</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
    <header class="header">
        <div class="container">
            <h1 class="logo">ViralSight</h1>
            <nav>
                <a href="index.html" class="nav-link active">Dashboard</a>
                <a href="analysis.html" class="nav-link">Report</a>
                <a href="automation.html" class="nav-link">Automation</a>
                <a href="settings.html" class="nav-link">Settings</a>
            </nav>
        </div>
    </header>

    <main class="dashboard-main">
        <div class="container">
            <section class="hero-section">
                <h2>Analyze & Conquer</h2>
                <p>AI-driven diagnostics for maximizing views and followers.</p>
                <button id="uploadBtn" class="cta-button">Analyze New Short</button>
            </section>

            <section class="analytics-summary">
                <h3>Performance</h3>
                <div class="summary-grid">
                    <div class="card summary-card hover-effect">
                        <p class="stat-value">1.8M</p>
                        <p class="stat-label">Views (7D)</p>
                    </div>
                    <div class="card summary-card hover-effect">
                        <p class="stat-value">12.4K</p>
                        <p class="stat-label">New Followers</p>
                    </div>
                    <div class="card summary-card hover-effect">
                        <p class="stat-value">68%</p>
                        <p class="stat-label">Avg. Retention</p>
                    </div>
                    <div class="card summary-card hover-effect">
                        <p class="stat-value">8.1/10</p>
                        <p class="stat-label">Hook Score</p>
                    </div>
                </div>
            </section>

            <section class="recent-reports">
                <h3>Latest Reports</h3>
                <div class="report-list">
                    <div class="report-item card hover-effect">
                        <span class="report-title">Short #104: "AI Art Speedrun"</span>
                        <span class="report-meta">Hook: 9.2 | Retention: 72% | Viral Score: High</span>
                        <a href="analysis.html" class="view-report-btn">View &rarr;</a>
                    </div>
                    <div class="report-item card hover-effect">
                        <span class="report-title">Short #103: "Tech Tip"</span>
                        <span class="report-meta">Hook: 6.5 | Retention: 55% | Viral Score: Medium</span>
                        <a href="analysis.html" class="view-report-btn">View &rarr;</a>
                    </div>
                    <div class="report-item card hover-effect">
                        <span class="report-title">Short #102: "Day in the Life"</span>
                        <span class="report-meta">Hook: 7.8 | Retention: 65% | Viral Score: Medium-High</span>
                        <a href="analysis.html" class="view-report-btn">View &rarr;</a>
                    </div>
                </div>
            </section>
        </div>
    </main>

    <footer class="footer">
        <div class="container">
            <p>&copy; 2024 ViralSight.</p>
        </div>
    </footer>

    <script src="script.js"></script>

  <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner">
      <span></span>
      <div>Built with <b>Karbon Sites</b></div>
  </a>
</body>
</html>