-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (57 loc) · 1.93 KB
/
index.html
File metadata and controls
64 lines (57 loc) · 1.93 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
<!doctype html>
<html lang="en">
<head>
<!-- Basic -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ffffff" />
<!-- Title -->
<title>Build Better Sites | Ship and Stabilize Web Products Faster</title>
<!-- Meta Description -->
<meta
name="description"
content="I help startups and small teams ship MVPs faster and fix fragile frontend and backend systems. Short-term engagements focused on speed, stability, and real users."
/>
<!-- SEO -->
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://buildbettersites.com/" />
<!-- Open Graph (LinkedIn, Facebook) -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Build Better Sites" />
<meta
property="og:description"
content="Ship MVPs faster and turn fragile web apps into stable, scalable products."
/>
<meta property="og:url" content="https://buildbettersites.com/" />
<meta
property="og:image"
content="https://buildbettersites.com/card-image.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Build Better Sites" />
<meta
name="twitter:description"
content="Short-term frontend and backend work to ship and stabilize real web products."
/>
<meta
name="twitter:image"
content="https://buildbettersites.com/card-image.png"
/>
<!-- Favicon -->
<link
rel="icon"
type="image/png"
href="https://buildbettersites.com/favicon.png"
/>
<!-- Preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>