From ec9bb9e5c57c2f0f6db69d0b1afeac3e9b8aa58d Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 28 Sep 2021 23:25:32 +0300 Subject: feat(corp/website): Add initial website for tvl.su Change-Id: I83506c214a5db1be283913ed2ebd182fbba00c61 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3650 Reviewed-by: tazjin Tested-by: BuildkiteCI --- corp/website/content.md | 26 ++++++++++++++++++++++++++ corp/website/default.nix | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 corp/website/content.md create mode 100644 corp/website/default.nix (limited to 'corp/website') 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 +================ + +---------------- + + + +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 = '' + + + + ''; +} -- cgit 1.4.1