-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
52 lines (52 loc) · 1.81 KB
/
Copy pathprivacy.html
File metadata and controls
52 lines (52 loc) · 1.81 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
<!DOCTYPE html>
<html class="dark" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Privacy notice for the Jacob Mohan portfolio site."
/>
<title>Privacy | Jacob Mohan</title>
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<script id="tailwind-config">
tailwind.config = {
darkMode: "class",
theme: {
extend: {
fontFamily: {
headline: ["Space Grotesk"],
body: ["Inter"]
}
}
}
};
</script>
<style>
body {
background-color: #131313;
color: #e5e2e1;
font-family: "Inter", sans-serif;
}
</style>
</head>
<body class="font-body">
<main class="mx-auto min-h-screen max-w-3xl px-6 py-20">
<a href="index.html" class="font-headline text-sm uppercase tracking-[0.3em] text-emerald-400">Back to Portfolio</a>
<h1 class="mt-8 font-headline text-4xl font-black tracking-tight text-white sm:text-5xl">Privacy</h1>
<p class="mt-8 text-lg leading-relaxed text-neutral-200">
This site uses Google Analytics to measure page visits and link clicks.
</p>
<p class="mt-6 text-base leading-relaxed text-neutral-400">
The analytics setup is used to understand portfolio traffic and which links people interact with most often.
No sensitive personal information is intentionally collected through this site.
</p>
</main>
</body>
</html>