about summary refs log tree commit diff
path: root/corp
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-28T20·25+0300
committertazjin <mail@tazj.in>2021-09-28T22·04+0000
commitec9bb9e5c57c2f0f6db69d0b1afeac3e9b8aa58d (patch)
treeff3f73c4daddabf4c2e0178c55d52ddac934ebbc /corp
parent0ec6b4fad6aa3d6ef201bee4b8f9926b21b2b4f1 (diff)
feat(corp/website): Add initial website for tvl.su r/2934
Change-Id: I83506c214a5db1be283913ed2ebd182fbba00c61
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3650
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
Diffstat (limited to 'corp')
-rw-r--r--corp/website/content.md26
-rw-r--r--corp/website/default.nix33
2 files changed, 59 insertions, 0 deletions
diff --git a/corp/website/content.md b/corp/website/content.md
new file mode 100644
index 0000000000..6dba8dfdad
--- /dev/null
+++ b/corp/website/content.md
@@ -0,0 +1,26 @@
+The Virus Lounge
+================
+
+----------------
+
+<img class="tvl-logo" src="https://tvl.fyi/static/tvl-animated.svg"
+     alt="Virus with lambda-shaped spike proteins sitting on an armchair">
+
+Welcome to the corporate face of [The Virus Lounge][tvl-fyi].
+
+We provide technology consulting around a variety of topics, for
+example:
+
+* Advice and setup of organisation-wide monorepos for effective
+  developer workflows, including associated tooling like CI/CD
+* Assistance with anything related to Nix/NixOS
+* Software development in various languages (Rust, Common Lisp,
+  Erlang, Java and more)
+
+We might be able to help you with other things on request.
+
+Note: We are still in the process of getting started and have limited
+capacity at the moment. If you would like our help, please reach out
+at **contact {at} tvl.su** for a discussion.
+
+[tvl-fyi]: https://tvl.fyi
diff --git a/corp/website/default.nix b/corp/website/default.nix
new file mode 100644
index 0000000000..e0e4570891
--- /dev/null
+++ b/corp/website/default.nix
@@ -0,0 +1,33 @@
+{ depot, pkgs, ... }:
+
+
+let
+  # https://developers.google.com/search/docs/advanced/structured-data/logo
+  structuredData = {
+    "@context" = "https://schema.org";
+    "@type" = "Organisation";
+    url = "https://tvl.su";
+    logo = "https://tvl.fyi/static/tvl-animated.svg";
+  };
+in depot.web.tvl.template {
+  title = "TVL (The Virus Lounge) - Software consulting";
+  content = builtins.readFile ./content.md;
+  useUrls = true; # load resources from tvl.fyi
+  extraFooter = "\n|\n © ООО ТВЛ";
+
+  # TODO(tazjin): The `.tvl-logo` thing can probably go in the shared CSS.
+  extraHead = ''
+    <meta name="description" content="TVL provides technology consulting for monorepos, Nix, and other SRE/DevOps/Software Engineering topics.">
+    <script type="application/ld+json">
+      ${builtins.toJSON structuredData}
+    </script>
+      <style>
+        .tvl-logo {
+          width: 60%;
+          display: block;
+          margin-left: auto;
+          margin-right: auto;
+        }
+      </style>
+  '';
+}