From 56496240ff8ca2b66e741d4576c7a48ce49eec6f Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Mon, 9 May 2022 13:33:19 +0200 Subject: [PATCH] Add OG images and meta description (#13) --- main.jsx | 31 ++++++++++++++++++++++++++----- static/cover.png | Bin 0 -> 46244 bytes 2 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 static/cover.png diff --git a/main.jsx b/main.jsx index 16db101..bdc75a9 100755 --- a/main.jsx +++ b/main.jsx @@ -4,7 +4,7 @@ /** @jsxFrag Fragment */ import { serve } from "https://deno.land/std@0.135.0/http/server.ts"; import { serveDir } from "https://deno.land/std@0.135.0/http/file_server.ts"; -import { h, ssr } from "https://crux.land/nanossr@0.0.4"; +import { Fragment, h, Helmet, ssr } from "https://crux.land/nanossr@0.0.4"; import work from "./data/work.json" assert { type: "json" }; @@ -244,11 +244,29 @@ function Faq() { ); } +const DESCRIPTION = + "The Web-interoperable Runtimes Community Group aims to provide a space for JS runtimes to collaborate on API interoperability."; + function Layout(props) { return ( -
- {props.children} -
+ <> + + WinterCG + + + + + + + +
+ {props.children} +
+ ); } @@ -388,7 +406,10 @@ function Footer() {