This repository was archived by the owner on Sep 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-17
lines changed Expand file tree Collapse file tree 2 files changed +3
-17
lines changed Original file line number Diff line number Diff line change 11// latest version of netzo/cli (see https://github.com/netzo/netzo/releases)
2- export const VERSION = "0.5.97 " ;
2+ export const VERSION = "0.5.98 " ;
33
44// minimum version of Deno required to run this CLI
55// (see https://github.com/denoland/deployctl/blob/main/src/version.ts)
Original file line number Diff line number Diff line change @@ -23,21 +23,6 @@ export const Head = (props: HeadProps) => {
2323 return (
2424 < _Head >
2525 < meta name = "viewport" content = "width=device-width, initial-scale=1.0" />
26- < Meta
27- title = { props . title }
28- description = { props . description }
29- favicon = { props . favicon }
30- image = { props . image }
31- href = { props . href }
32- />
33- { props . children }
34- </ _Head >
35- ) ;
36- } ;
37-
38- export const Meta = ( props : HeadProps ) => {
39- return (
40- < >
4126 { /* HTML Meta Tags */ }
4227 < title > { props . title } | Netzo</ title >
4328 < meta name = "description" content = { props . description } />
@@ -63,6 +48,7 @@ export const Meta = (props: HeadProps) => {
6348 < meta name = "twitter:title" content = { props . title } />
6449 < meta name = "twitter:description" content = { props . description } />
6550 < meta name = "twitter:image" content = { props . image } />
66- </ >
51+ { props . children }
52+ </ _Head >
6753 ) ;
6854} ;
You can’t perform that action at this time.
0 commit comments