-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (131 loc) · 3.76 KB
/
Copy pathindex.html
File metadata and controls
151 lines (131 loc) · 3.76 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VectorVision | Premium Geometric Standard</title>
<style>
:root {
--primary: #00ffcc;
--whatsapp: #25D366;
--bg: #050505;
--card: #111111;
--text: #ffffff;
--dim: #888888;
}
body {
background-color: var(--bg);
color: var(--text);
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
margin: 0;
display: flex;
justify-content: center;
}
.container {
width: 100%;
max-width: 450px;
padding: 24px;
box-sizing: border-box;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 40px;
}
.logo {
font-weight: 900;
color: var(--primary);
font-size: 1.4rem;
letter-spacing: -1px;
}
.wa-btn {
background: var(--whatsapp);
color: white;
padding: 10px 20px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 0.85rem;
}
header {
text-align: left;
padding: 40px 0;
}
h1 {
font-size: 3.5rem;
margin: 0;
line-height: 0.9;
}
.sub {
color: var(--primary);
font-weight: bold;
margin-top: 15px;
letter-spacing: 2px;
font-size: 0.9rem;
}
.card {
background: var(--card);
border: 1px solid #222;
padding: 24px;
border-radius: 24px;
margin-bottom: 20px;
}
h2 {
color: var(--primary);
margin: 0 0 10px 0;
font-size: 1.6rem;
}
p {
color: var(--dim);
line-height: 1.6;
margin: 0;
}
.btn-gh {
display: block;
text-align: center;
background: white;
color: black;
padding: 18px;
border-radius: 16px;
text-decoration: none;
font-weight: 900;
margin-top: 20px;
}
footer {
text-align: center;
margin-top: 60px;
color: #333;
font-size: 0.8rem;
padding-bottom: 40px;
}
</style>
</head>
<body>
<div class="container">
<nav>
<div class="logo">VectorVision</div>
<a href="https://wa.me/923440708494?text=Hi%20Ali,%20I'm%20coming%20from%20the%20VectorVision%20website" class="wa-btn">Contact</a>
</nav>
<header>
<h1>Beyond Pixels.</h1>
<div class="sub">THE GEOMETRIC ERA</div>
</header>
<div class="card">
<p>We are replacing blurry pixels with pure mathematical paths. Experience infinite resolution and 85% data savings.</p>
</div>
<div class="card">
<h2>.svgc</h2>
<p>The Scalable Vector Geometric Camera protocol. High-fidelity replacements for JPG and PNG.</p>
</div>
<div class="card">
<h2>.svgv</h2>
<p>The Scalable Vector Global Video standard. Movement-as-geometry for the future of media.</p>
</div>
<a href="https://github.com/thealidev/VectorVision" class="btn-gh">View Repository</a>
<footer>
Architected by Muhammad Ali • Rawalpindi, Pakistan
</footer>
</div>
</body>
</html>