diff --git a/corp/website/content.md b/corp/website/content.md
new file mode 100644
index 000000000..6dba8dfda
--- /dev/null
+++ b/corp/website/content.md
@@ -0,0 +1,26 @@
+The Virus Lounge
+================
+
+----------------
+
+
+
+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 000000000..e0e457089
--- /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 = ''
+
+
+
+ '';
+}