-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (65 loc) · 3.15 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infer Vancouver: AI Engineering Meetup</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap" rel="stylesheet">
<!-- favicon -->
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<!-- styles -->
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<main class="container">
<!-- Logo and Header -->
<div class="header">
<div class="logo-container">
<img src="./images/infer-logo.png" alt="Infer Vancouver Logo" />
</div>
<h1>Infer Speaker Series</h1>
<p>
Infer is Vancouver's meetup for tactics, techniques, and lessons learned in
LLM and AI engineering.
</p>
</div>
<div class="grid">
<div class="card events-card">
<img src="./images/infer-peter.jpg" alt="AI Engineering Talk" />
<div class="card-label">Events on Luma</div>
<h2>Attend our next event</h2>
<p>We host speakers roughly every 2 months, so check in on Luma for when! Talks are usually on practical topics like RAG, prompting techniques, evals, and building agents. </p>
<a href="https://lu.ma/infer" class="button">Attend or subscribe via Luma</a>
</div>
<div class="card youtube-card">
<div class="card-label">YouTube</div>
<h2>Watch previous talks</h2>
<p>We record talks to share them with the community.</p>
<a href="https://www.youtube.com/@InferVancouver" class="button">Watch on YouTube</a>
</div>
<div class="card contact-card">
<div class="card-label">Contact us</div>
<h2>Pitch a talk!</h2>
<p>Our audience is primarily senior developers building products with AI and LLMs so If you are working on a production app that uses LLMs, come join us or arrange to share what you're learning!</p>
<a href="mailto:[email protected]?subject=Infer%20Vancouver" class="button">Email us</a>
</div>
</div>
<!-- <p class="call-to-action">If you are working on a production app that uses LLMs, come join us or
arrange to share what you're learning!
Our audience is primarily senior developers building products with AI and LLMs, so practical topics like RAG,
prompting techniques, evals, and building agents are great.</p> -->
<div class="partners-header">
Supported by
</div>
<div class="partners">
<a href="https://forestwalk.ai"><img src="./images/forestwalk-logo.png" alt="Forestwalk" /></a>
<a href="https://neu.edu"><img src="./images/northeastern-logo.png" alt="Northeastern University" /></a>
<a href="https://latent.space"><img src="./images/latent-space-logo.png" alt="Latest Space" /></a>
</div>
</main>
</body>
</html>