Skip to content

Commit 1845273

Browse files
committed
Add flyer
1 parent d9d8273 commit 1845273

File tree

4 files changed

+63
-2
lines changed

4 files changed

+63
-2
lines changed
13.8 KB
Binary file not shown.
14.4 KB
Binary file not shown.

flyer.html.pm

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#lang pollen
2+
3+
◊(require string-interpolation)
4+
5+
◊`(div ([class "bg-white"])
6+
(div ([id "meetup"] [class "min-h-[94vh] text-zinc-700 h-full max-w-screen-xl py-20 px-20"])
7+
(h1 ([class ,"mb-14 text-[16rem] font-free-fat text-center leading-[0.7em]"]) "Free Pizza")
8+
(p ([class "my-4 text-3xl text-center leading-relaxed"])
9+
"and functional programming at the")
10+
(p ([class ,"text-4xl text-center font-fira-code text-[@{jordy}] "]) "Functional Programming Meetup Tübingen")
11+
(div ([class "my-14 flex justify-between"])
12+
(a ([href "https://www.haskell.org/"])
13+
(img ([src "assets/logos/haskell.svg"] [class "aspect-auto w-28"])))
14+
(a ([href "https://elixir-lang.org"])
15+
(img ([src "assets/logos/elixir.svg"] [class "aspect-auto w-24"])))
16+
(a ([href "https://racket-lang.org"])
17+
(img ([src "assets/logos/racket.svg"] [class "aspect-auto w-24"])))
18+
(a ([href "https://nixos.org"])
19+
(img ([src "assets/logos/nix.png"] [class "aspect-auto w-24"])))
20+
(a ([href "https://clojure.org"])
21+
(img ([src "assets/logos/clojure.svg"] [class "aspect-auto w-24"])))
22+
(a ([href "https://rust-lang.org"])
23+
(img ([src "assets/logos/ferris.svg"] [class "aspect-auto w-24"])))
24+
)
25+
(div ([class "my-14"])
26+
◊; ,(heading "Functional Programming Meetup Tübingen")
27+
◊; (p ([class "text-3xl text-center my-6"]) "Next Meetup")
28+
(p ([class "text-4xl font-fira-code text-center my-6 tracking-tight"])
29+
"Next Meetup 19:00, 28.08.2024 @itdesign")
30+
(ul ([class "ml-10 my-14 list-disc *:my-4"])
31+
(li ([class "text-3xl"])
32+
(span ([class "ml-5"]) "Simple development environments with Nix (Talk)"))
33+
(li ([class "text-3xl"])
34+
(span ([class "ml-5"]) "Persistent Data Structures (Talk)"))
35+
(li ([class "text-3xl"])
36+
(span ([class "ml-5"]) "Pizza, talking, coding"))
37+
)
38+
)
39+
(div ([class ""])
40+
(a ([href "https://functional-coders.github.io"]
41+
[class ,"ml-4 inline-flex gap-4 items-center text-center hover:text-[@{jordy}] focus-visible:text-[@{jordy}] duration-300"])
42+
(svg ([xmlns "http://www.w3.org/2000/svg"] [fill "none"] [viewBox "0 0 24 24"] [stroke-width "3"] [stroke "currentColor"] [class "size-8"])
43+
(path ([stroke-linecap "round"] [stroke-linejoin "round"] [d "M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3"]))
44+
(span ([class "text-4xl text-[@{jordy}] font-fira-code tracking-tighter leading-snug"]) "https://functional-coders.github.io")))
45+
)
46+
47+
)
48+
)
49+
50+
51+
◊; ,(->badges "Haskell, Nix, Elixir, Erlang, Rust, Clojure, Racket, Category Theory, Lenses")

fonts.css

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
.font-fira-sans {
2-
font-family: 'Fira Sans';
2+
font-family: 'Fira Sans';
33
}
44

55
.font-fira-code {
6-
font-family: 'Fira Code'
6+
font-family: 'Fira Code'
7+
}
8+
9+
.font-free-fat {
10+
font-family: 'Free Fat';
11+
}
12+
13+
@font-face {
14+
font-family: 'Free Fat';
15+
font-style: normal;
16+
src: url(./assets/fonts/FREEFATFONT-Regular.woff2) format('woff2');
717
}
818

919
/* fira-sans-300 - latin_greek */

0 commit comments

Comments
 (0)