Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 36 | 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
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>VeriSkill AI - Transparent Talent Networks</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
    <header class="main-header">
        <nav class="navbar">
            <div class="logo">VeriSkill AI</div>
            <ul class="nav-links">
                <li><a href="index.html" class="active">Home</a></li>
                <li><a href="features.html">Features</a></li>
                <li><a href="about.html">About Us</a></li>
                <li><a href="#contact" class="cta-nav">Get Started</a></li>
            </ul>
            <div class="menu-toggle" id="menu-toggle">&#9776;</div>
        </nav>
    </header>

    <main>
        <section class="hero" id="hero">
            <div class="hero-content">
                <h1 class="fade-in-up">Unlocking Talent, Erasing Bias.</h1>
                <p class="fade-in-up delay-1">The next generation of agent networks ensuring every skilled developer gets the fair opportunity they deserve.</p>
                <div class="cta-group fade-in-up delay-2">
                    <a href="features.html" class="btn btn-primary">Explore Verification</a>
                    <a href="#solution" class="btn btn-secondary">See The Solution</a>
                </div>
            </div>
            <div class="hero-visual">
                <div class="terminal-box fade-in scale-up delay-3">
                    <div class="terminal-header"><span></span><span></span><span></span></div>
                    <pre class="terminal-content">
$ veriskill verify --developer=JaneDoe
&gt; Status: Credentials Verified (98.5% Confidence)
&gt; Bias Score: 0.01 (Negligible)
&gt; Match Score (CompanyX): 92% (Highly Recommended)
&gt; ----------------------------------------
&gt; Recommendation: Transparently Forwarded.
                    </pre>
                </div>
            </div>
        </section>

        <section class="features-summary" id="solution">
            <h2 class="section-title fade-in">The Core Challenge Solved</h2>
            <div class="grid-summary">
                <div class="summary-card card-1 fade-in-up">
                    <h3>Verifiable Credentials</h3>
                    <p>Decentralized, tamper-proof skill validation powered by secure agents.</p>
                </div>
                <div class="summary-card card-2 fade-in-up delay-1">
                    <h3>Bias Detection</h3>
                    <p>Algorithms actively scan screening processes for demographic or pattern-based prejudice.</p>
                </div>
                <div class="summary-card card-3 fade-in-up delay-2">
                    <h3>Full Transparency</h3>
                    <p>Developers see exactly why they were matched or rejected, fostering trust.</p>
                </div>
            </div>
        </section>

        <section class="mission-statement">
            <div class="mission-content">
                <h2 class="fade-in-up">Our Mission: Fair Access to Opportunity</h2>
                <p class="fade-in-up delay-1">We build the infrastructure for meritocracy. By abstracting away opaque HR systems and introducing verifiable proof, we ensure talent rises to the top, regardless of background.</p>
                <a href="about.html" class="btn btn-tertiary fade-in-up delay-2">Learn About Our Agents</a>
            </div>
        </section>
    </main>

    <footer class="main-footer">
        <div class="footer-content">
            <div class="footer-col">
                <h4>VeriSkill AI</h4>
                <p>&copy; 2024. Creating equitable hiring ecosystems.</p>
            </div>
            <div class="footer-col">
                <h4>Navigation</h4>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="features.html">Features</a></li>
                    <li><a href="about.html">About</a></li>
                </ul>
            </div>
            <div class="footer-col">
                <h4>Legal</h4>
                <ul>
                    <li><a href="#privacy">Privacy Policy</a></li>
                    <li><a href="#terms">Terms of Service</a></li>
                </ul>
            </div>
        </div>
    </footer>

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