Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
0.5.99
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed Jun 25, 2024
1 parent bf4e5bf commit 4bb2176
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
18 changes: 16 additions & 2 deletions lib/components/head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,21 @@ export const Head = (props: HeadProps) => {
return (
<_Head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<Meta
title={props.title}
description={props.description}
favicon={props.favicon}
image={props.image}
href={props.href}
/>
{props.children}
</_Head>
);
};

export const Meta = (props: HeadProps) => {
return (
<>
{/* HTML Meta Tags */}
<title>{props.title} | Netzo</title>
<meta name="description" content={props.description} />
Expand All @@ -48,7 +63,6 @@ export const Head = (props: HeadProps) => {
<meta name="twitter:title" content={props.title} />
<meta name="twitter:description" content={props.description} />
<meta name="twitter:image" content={props.image} />
{props.children}
</_Head>
</>
);
};

0 comments on commit 4bb2176

Please sign in to comment.