-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (54 loc) · 2.97 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/style.css"/>
<link rel="stylesheet" href="/line-awesome/css/line-awesome.min.css"/>
<link rel="icon" type="image/x-icon" href="/favicon.png">
<script src="/js/main.js" defer></script>
<title>Home | Just wing it</title>
<meta name="description" content="Genna Wingert's personal site.">
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://genna.win/rss.xml">
<link rel="alternate" type="application/atom+xml" title="Atom" href="https://genna.win/atom.xml">
</head>
<body class="bg-white dark:bg-zinc-900 transition ease-in-out">
<section>
<div class="h-screen lg:h-auto lg:w-screen flex flex-col lg:flex-row space-y-16
lg:space-y-0 items-center lg:items-start lg:text-left">
<img
src="/homepage-image.jpg"
class="object-cover h-1/2 w-full lg:h-screen lg:w-1/2"/>
<div class="lg:h-screen lg:w-1/2 flex items-center">
<div class="mx-16 flex flex-col space-y-16 lg:space-y-4">
<h1 class="font-serif text-4xl text-slate-900 dark:text-slate-300">
Genna Wingert
</h1>
<p class="font-sans text-2xl lg:text-xl text-slate-600 dark:text-slate-500">
Just wing it
</p>
<div class="mt-4 text-2xl lg:text-xl">
<a class="font-sans text-gray-500 hover:text-gray-400
dark:text-slate-500 dark:hover:text-slate-400 transition"
href="/blog">
Visit my blog <i class="las la-arrow-right"></i>
</a>
</div>
<div class="mt-4 text-4xl flex gap-2">
<div class="text-slate-500 hover:text-slate-700 transition">
<a href="https://github.com/wingertge" target="_blank">
<i class="la la-github"></i>
</a>
</div>
<div class="text-slate-500 hover:text-slate-700 transition">
<a href="https://www.linkedin.com/in/genna-wingert-65693816a/" target="_blank">
<i class="lab la-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>