-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.janet
34 lines (31 loc) · 1.09 KB
/
services.janet
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
(use speakeasy)
(eval-string (slurp "util/load.janet"))
(using ~(
:util element color
:resources colors
:components base header layout grid))
(let [
title company
tagline "Here’s where we come in."
description ```Fleuronic has a proven track record in the following areas. We apply a thoughtful
and rigorous approach to engineering up and down the stack, in codebases both established and yet
to be, to build something people love.```
content {
:ios {
:name "iOS Development"
:text "Fast, responsive, native mobile apps built with Swift, UIKit, and SwiftUI."}
:mac {
:name "Mac Development"
:text "Desktop class software, built natively for macOS with AppKit and Catalyst."}
:backend {
:name "Backend Development"
:text "Infrastucture to power your app, leveraging REST or GraphQL APIs to access data."}
:perf {
:name "Analytics and Monitoring"
:text "Visibility into how your users use your app — and how well it works for them."}}]
(base title default
header
[section
[heading tagline]
[paragraph description]
(grid content :ios :mac :backend :perf)]))