-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
152 lines (143 loc) · 5.48 KB
/
index.html
File metadata and controls
152 lines (143 loc) · 5.48 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
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<!-- Content Security Policy -->
<meta
http-equiv="Content-Security-Policy"
content="
default-src 'self';
script-src 'self' 'unsafe-inline' https://www.googletagmanager.com https://www.google-analytics.com;
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
font-src 'self' https://fonts.gstatic.com;
img-src 'self' data: https:;
connect-src 'self' https://www.google-analytics.com;
frame-src 'none';
object-src 'none';
base-uri 'self';
form-action 'self';
upgrade-insecure-requests;
"
/>
<!-- Primary Meta Tags -->
<title>Benjamin Elliott - Full Stack Developer | Berlin</title>
<meta
name="title"
content="Benjamin Elliott - Full Stack Developer | Berlin"
/>
<meta
name="description"
content="Full Stack Web Developer at Shep, based in Berlin. Specializing in React, TypeScript, Next.js, Node.js, and modern web technologies. Former Ironhack teaching assistant with a passion for building innovative solutions."
/>
<meta
name="keywords"
content="Benjamin Elliott, web developer, full stack developer, React, TypeScript, Next.js, Node.js, JavaScript, Berlin, Shep, Ironhack, tailwindcss, developer portfolio"
/>
<meta name="author" content="Benjamin Elliott" />
<!-- Canonical URL -->
<link rel="canonical" href="https://benjamin.dev" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://benjamin.dev" />
<meta property="og:title" content="Benjamin Elliott - Full Stack Developer | Berlin" />
<meta
property="og:description"
content="Full Stack Web Developer at Shep, based in Berlin. Specializing in React, TypeScript, Next.js, Node.js, and modern web technologies."
/>
<meta property="og:image" content="https://benjamin.dev/images/hero.webp" />
<meta property="og:site_name" content="benjamin.dev" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://benjamin.dev" />
<meta name="twitter:title" content="Benjamin Elliott - Full Stack Developer | Berlin" />
<meta
name="twitter:description"
content="Full Stack Web Developer at Shep, based in Berlin. Specializing in React, TypeScript, Next.js, Node.js, and modern web technologies."
/>
<meta name="twitter:image" content="https://benjamin.dev/images/hero.webp" />
<link rel="apple-touch-icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json" />
<!-- DNS Prefetch & Preconnect -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Preload critical resources -->
<link rel="preload" href="/images/hero.webp" as="image" type="image/webp" />
<link rel="preload" href="/images/B.webp" as="image" type="image/webp" />
<link rel="preload" href="/favicon.ico" as="image" />
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=Lunasima:wght@400;700&display=swap"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lunasima:wght@400;700&display=swap"
rel="stylesheet"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
href="https://fonts.googleapis.com/css2?family=Lunasima:wght@400;700&display=swap"
rel="stylesheet"
/>
</noscript>
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Benjamin Elliott",
"url": "https://benjamin.dev",
"image": "https://benjamin.dev/images/hero.webp",
"jobTitle": "Full Stack Web Developer",
"worksFor": {
"@type": "Organization",
"name": "Shep"
},
"address": {
"@type": "PostalAddress",
"addressLocality": "Berlin",
"addressCountry": "Germany"
},
"sameAs": [
"https://github.com/benjamindotdev",
"https://www.linkedin.com/in/benjamindotdev"
],
"knowsAbout": [
"React",
"TypeScript",
"Next.js",
"Node.js",
"JavaScript",
"TailwindCSS",
"Full Stack Development",
"Web Development"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Benjamin Elliott - Developer Portfolio",
"url": "https://benjamin.dev",
"description": "Full Stack Web Developer portfolio showcasing projects, experience, and skills",
"author": {
"@type": "Person",
"name": "Benjamin Elliott"
}
}
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>