This repository was archived by the owner on Sep 22, 2024. It is now read-only.
File tree 2 files changed +3
-17
lines changed
2 files changed +3
-17
lines changed Original file line number Diff line number Diff line change 1
1
// 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 " ;
3
3
4
4
// minimum version of Deno required to run this CLI
5
5
// (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) => {
23
23
return (
24
24
< _Head >
25
25
< 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
- < >
41
26
{ /* HTML Meta Tags */ }
42
27
< title > { props . title } | Netzo</ title >
43
28
< meta name = "description" content = { props . description } />
@@ -63,6 +48,7 @@ export const Meta = (props: HeadProps) => {
63
48
< meta name = "twitter:title" content = { props . title } />
64
49
< meta name = "twitter:description" content = { props . description } />
65
50
< meta name = "twitter:image" content = { props . image } />
66
- </ >
51
+ { props . children }
52
+ </ _Head >
67
53
) ;
68
54
} ;
You can’t perform that action at this time.
0 commit comments