diff options
Diffstat (limited to 'corp')
-rw-r--r-- | corp/LICENSE | 4 | ||||
-rw-r--r-- | corp/OWNERS | 3 | ||||
-rw-r--r-- | corp/website/content.md | 26 | ||||
-rw-r--r-- | corp/website/default.nix | 37 |
4 files changed, 70 insertions, 0 deletions
diff --git a/corp/LICENSE b/corp/LICENSE new file mode 100644 index 000000000000..f29fc8403880 --- /dev/null +++ b/corp/LICENSE @@ -0,0 +1,4 @@ +Copyright 2021 ООО ТВЛ + +Code under this folder may be redistributed as part of the TVL depot +repository. All other usage rights for this code are reserved. diff --git a/corp/OWNERS b/corp/OWNERS new file mode 100644 index 000000000000..4bc08d35f67f --- /dev/null +++ b/corp/OWNERS @@ -0,0 +1,3 @@ +inherited: false +owners: + - tvl-employees diff --git a/corp/website/content.md b/corp/website/content.md new file mode 100644 index 000000000000..f7ca9786fbea --- /dev/null +++ b/corp/website/content.md @@ -0,0 +1,26 @@ +The Virus Lounge +================ + +---------------- + +<img class="tvl-logo" src="https://static.tvl.su/latest/logo-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 000000000000..2011e2a376ab --- /dev/null +++ b/corp/website/default.nix @@ -0,0 +1,37 @@ +{ 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://static.tvl.fyi/${depot.web.static.drvHash}/logo-animated.svg"; + }; + index = depot.web.tvl.template { + title = "TVL (The Virus Lounge) - Software consulting"; + content = builtins.readFile ./content.md; + 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> + ''; + }; +in +pkgs.runCommandNoCC "corp-website" { } '' + mkdir $out + cp ${index} $out/index.html +'' |