-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (99 loc) · 4.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="./assets/images/1311.png" />
<title>Adam Projects</title>
<meta name="description" content="Portfolio Maybe.">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./css/layout.css">
<link rel="stylesheet" href="./css/typography.css">
<link rel="stylesheet" href="./css/utilities.css">
<script defer src="./js/script.js"></script>
</head>
<body>
<!-- NAVBAR -->
<div class="navbar">
<a class="nav-title-link" href="./index.html">
<span class="nav-title">Adam Bio Page</span>
<a class="button" href="mailto:[email protected]">
<span class="button-text">Contact Me</span>
</a>
</a>
</div>
<!-- MAIN PAGE CONTENT -->
<div id="main-content">
<!-- PORTFOLIO HEADER -->
<div id="portfolio-header">
<div id="portfolio-header-image-container">
<img src="./assets/images/1311.png" class="portfolio-header-image">
<a class="no-underline" target="_blank" href="https://opensea.io/assets/0xe0be388ab81c47b0f098d2030a1c9ef190691a8a/1311">
<span class="image-caption">Adam Langmeyer</span>
</a>
</div>
<div id="portfolio-header-text-container">
<div class="header-text">
<span class="main-title">I'm Adam</span>
<div class="body-text">I’m a freelance SRE and developer who aims to help businesses remove the frustrations of development friction.</div>
</div>
<a class="button" id="my-work-link">
<span class="button-text">Projects.</span>
<image src="./assets/icons/arrow-right.svg" class="right-arrow-icon"/>
</a>
</div>
</div>
<div id="about-section">
<span class="subheader-text">Info / About Me</span>
<div class="about-section-content">
<div class="body-text">I am looking to work in GoLang AIOps</div>
<div class="body-text">Useful Projects as available below.</div>
</div>
</div>
<!-- PROJECTS / MY WORK SECTION -->
<div id="my-work-section">
<span class="subheader-text">Projects.</span>
<div class="projects-container">
<div class="project-card">
<img src="./assets/images/goperhdatapile.jpg" class="project-image">
<div class="project-card-text-container">
<div class="subheader-text project-title">Golang LLM Data Set</div>
<div class="body-text project-card-text">Fine Tune Go Code 1.18+</div>
</div>
<a class="button" href="https://github.com/citizenadam/gotraindata">
<span class="button-text">DataSet</span>
<image src="./assets/icons/arrow-right.svg" class="right-arrow-icon"/>
</a>
</div>
<div class="project-card">
<img src="./assets/images/floorthumbs.jpg" class="project-image">
<div class="project-card-text-container">
<div class="subheader-text project-title">Linkedin Endorser</div>
<div class="body-text project-card-text">A semi automatic way to endorse a network connection</div>
</div>
<a class="button" href="https://github.com/citizenadam/liendorsejsconsole">
<span class="button-text">Code Repo</span>
<image src="./assets/icons/arrow-right.svg" class="right-arrow-icon"/>
</a>
</div>
<div class="project-card">
<img src="./assets/images/dog3.jpg" class="project-image">
<div class="project-card-text-container">
<div class="subheader-text project-title">Pending 3</div>
<div class="body-text project-card-text">Pending 3</div>
</div>
<a class="button" href="./project-pages/project-template.html">
<span class="button-text">Read More</span>
<image src="./assets/icons/arrow-right.svg" class="right-arrow-icon"/>
</a>
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<div id="footer">
<a class="icon-link" href="mailto:[email protected]">
<image src="./assets/icons/mail.svg" class="footer-icon"/>
</a>
</div>
</body>
</html>