diff options
author | Florian Klink <flokli@flokli.de> | 2023-09-07T14·49+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-09-10T13·13+0000 |
commit | 8c53ab531018d390fcea95f44c63f3a643a8d17d (patch) | |
tree | 7765288e861a2b5f4ceeeb36ed0cfc5cc71d296e /tvix | |
parent | afe4dfb61eee59d03a883eba638beb685bf67447 (diff) |
refactor(tvix/website): remove unused structuredData r/6577
Change-Id: I2445b977c5bed3e2d4b90e8ad81119d316b29b50 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9281 Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: Adam Joseph <adam@westernsemico.com> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/website/default.nix | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tvix/website/default.nix b/tvix/website/default.nix index ed955e4d241b..2d7bce7eaf8d 100644 --- a/tvix/website/default.nix +++ b/tvix/website/default.nix @@ -1,14 +1,6 @@ { depot, lib, pkgs, ... }: let - # https://developers.google.com/search/docs/advanced/structured-data/logo - structuredData = { - "@context" = "https://schema.org"; - "@type" = "Organisation"; - url = "https://tvl.fyi"; - logo = "https://static.tvl.fyi/latest/logo-animated.svg"; - }; - # All Tvix-related blog posts from the main TVL website tvixPosts = builtins.filter (post: !(post.draft or false) && (lib.hasInfix "Tvix" post.title)) |