From 4bb2176e10de0b0e0e18284a290854f086fd030d Mon Sep 17 00:00:00 2001 From: Miguel Romero Karam Date: Tue, 25 Jun 2024 14:09:43 +0200 Subject: [PATCH] 0.5.99 --- lib/cli/src/version.ts | 2 +- lib/components/head.tsx | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/lib/cli/src/version.ts b/lib/cli/src/version.ts index 7be9768f..67e73339 100644 --- a/lib/cli/src/version.ts +++ b/lib/cli/src/version.ts @@ -1,5 +1,5 @@ // latest version of netzo/cli (see https://github.com/netzo/netzo/releases) -export const VERSION = "0.5.98"; +export const VERSION = "0.5.99"; // minimum version of Deno required to run this CLI // (see https://github.com/denoland/deployctl/blob/main/src/version.ts) diff --git a/lib/components/head.tsx b/lib/components/head.tsx index 5c493bc9..76f26547 100644 --- a/lib/components/head.tsx +++ b/lib/components/head.tsx @@ -23,6 +23,21 @@ export const Head = (props: HeadProps) => { return ( <_Head> + + {props.children} + + ); +}; + +export const Meta = (props: HeadProps) => { + return ( + <> {/* HTML Meta Tags */} {props.title} | Netzo @@ -48,7 +63,6 @@ export const Head = (props: HeadProps) => { - {props.children} - + ); };