File size: 4,646 Bytes
65abd06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Research | QuantumVault</title>
    <link rel="icon" type="image/x-icon" href="assets/favicon.ico">
    <link rel="stylesheet" href="assets/css/quantumvault.min.css">
    <script src="assets/js/quantumvault.min.js" defer></script>
</head>
<body class="qv-body">
    <div class="qv-container">
        <!-- Navigation -->
        <nav class="qv-nav">
            <div class="qv-brand-container">
                <a href="index.html" class="qv-brand">QuantumVault</a> <span class="qv-brand-icon"></span>
            </div>
            <div class="qv-nav-links">
                <a href="protocol.html" class="qv-nav-link">Protocol</a>
                <a href="about.html" class="qv-nav-link">Vision</a>
                <a href="research.html" class="qv-nav-link active">Research</a>
                <a href="team.html" class="qv-nav-link">Team</a>
            </div>
            <button class="qv-mobile-menu">
                <i data-feather="menu"></i>
            </button>
        </nav>

        <!-- Research Header -->
        <section class="qv-hero">
            <h1 class="qv-hero-title">
                <span class="qv-gradient-text">Quantum Research</span>
            </h1>
            <p class="qv-hero-subtitle">
                Pioneering the future of quantum encryption
            </p>
        </section>

        <!-- Research Content -->
        <section class="qv-section">
            <div class="qv-card-grid">
                <div class="qv-card">
                    <div class="qv-card-icon">
                        <i data-feather="book"></i>
                    </div>
                    <h3 class="qv-card-title">Published Papers</h3>
                    <p class="qv-card-text">
                        Access our latest research papers on quantum entanglement and biometric security.
                    </p>
                    <a href="#" class="qv-btn qv-btn-primary">View Papers</a>
                </div>
                
                <div class="qv-card">
                    <div class="qv-card-icon">
                        <i data-feather="cpu"></i>
                    </div>
                    <h3 class="qv-card-title">Experiments</h3>
                    <p class="qv-card-text">
                        Explore our quantum computing experiments and real-world implementations.
                    </p>
                    <a href="#" class="qv-btn qv-btn-primary">View Experiments</a>
                </div>
                
                <div class="qv-card">
                    <div class="qv-card-icon">
                        <i data-feather="users"></i>
                    </div>
                    <h3 class="qv-card-title">Collaborations</h3>
                    <p class="qv-card-text">
                        Join our research network and collaborate on cutting-edge quantum security projects.
                    </p>
                    <a href="#" class="qv-btn qv-btn-primary">Join Network</a>
                </div>
            </div>
        </section>

        <!-- Footer -->
        <footer class="qv-footer">
            <div class="qv-footer-grid">
                <div class="qv-footer-brand">
                    <div class="qv-brand">QuantumVault</div>
                    <p class="qv-footer-text">
                        The future of unbreakable encryption powered by quantum entanglement and biometrics.
                    </p>
                </div>
                <div class="qv-footer-links">
                    <h4 class="qv-footer-title">Research</h4>
                    <a href="#" class="qv-footer-link">Papers</a>
                    <a href="#" class="qv-footer-link">Experiments</a>
                    <a href="#" class="qv-footer-link">Collaborations</a>
                </div>
                <div class="qv-footer-links">
                    <h4 class="qv-footer-title">Connect</h4>
                    <div class="qv-social-icons">
                        <a href="#" class="qv-social-icon"><i data-feather="github"></i></a>
                        <a href="#" class="qv-social-icon"><i data-feather="twitter"></i></a>
                        <a href="#" class="qv-social-icon"><i data-feather="linkedin"></i></a>
                    </div>
                </div>
            </div>
            <div class="qv-footer-copyright">
                © 2023 QuantumVault Protocol. All research open-sourced under MIT License.
            </div>
        </footer>
    </div>
</body>
</html>