|
| 1 | +import React from 'react' |
| 2 | +import Head from 'next/head' |
| 3 | + |
| 4 | +const Metadata = () => { |
| 5 | + return ( |
| 6 | + <Head> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 8 | + <meta name="theme-color" content="#000000" /> |
| 9 | + <meta name="description" content="Visual editor for Chakra UI " /> |
| 10 | + <link |
| 11 | + rel="apple-touch-icon" |
| 12 | + sizes="180x180" |
| 13 | + href="/apple-touch-icon.png" |
| 14 | + /> |
| 15 | + <link |
| 16 | + rel="icon" |
| 17 | + type="image/png" |
| 18 | + sizes="32x32" |
| 19 | + href="/favicon-32x32.png" |
| 20 | + /> |
| 21 | + <link |
| 22 | + rel="icon" |
| 23 | + type="image/png" |
| 24 | + sizes="16x16" |
| 25 | + href="/favicon-16x16.png" |
| 26 | + /> |
| 27 | + <link rel="manifest" href="/site.webmanifest" /> |
| 28 | + <meta name="msapplication-TileColor" content="#da532c" /> |
| 29 | + <meta name="theme-color" content="#ffffff" /> |
| 30 | + |
| 31 | + <title>OpenChakra</title> |
| 32 | + <meta |
| 33 | + name="description" |
| 34 | + content="React JSX visual editor for Chakra UI" |
| 35 | + /> |
| 36 | + <meta |
| 37 | + name="image" |
| 38 | + content="https://openchakra.app/images/og-graph-color.png" |
| 39 | + /> |
| 40 | + |
| 41 | + {/* OpenGraph tags */} |
| 42 | + <meta property="og:url" content="https://openchakra.app" /> |
| 43 | + <meta property="og:site_name" content="OpenChakra" /> |
| 44 | + <meta property="og:type" content="website" /> |
| 45 | + <meta property="og:title" content="OpenChakra" /> |
| 46 | + <meta |
| 47 | + property="og:description" |
| 48 | + content="OpenChakra is a visual editor for React based on Chakra UI" |
| 49 | + /> |
| 50 | + <meta |
| 51 | + property="og:image" |
| 52 | + name="twitter:image" |
| 53 | + content="https://openchakra.app/images/og-graph-color.png" |
| 54 | + /> |
| 55 | + <meta property="og:image:width" content="1200" /> |
| 56 | + <meta property="og:image:height" content="600" /> |
| 57 | + |
| 58 | + {/* Twitter Card tags */} |
| 59 | + <meta name="twitter:card" content="summary_large_image" /> |
| 60 | + <meta name="twitter:title" content="OpenChakra" /> |
| 61 | + <meta |
| 62 | + name="twitter:description" |
| 63 | + content="OpenChakra is a visual editor for React based on Chakra UI" |
| 64 | + /> |
| 65 | + <meta |
| 66 | + name="twitter:image" |
| 67 | + content="https://openchakra.app/images/og-graph-color.png" |
| 68 | + /> |
| 69 | + |
| 70 | + <meta property="og:title" content="OpenChakra" /> |
| 71 | + <meta |
| 72 | + property="og:description" |
| 73 | + content="OpenChakra is a visual editor for React based on Chakra UI" |
| 74 | + /> |
| 75 | + <meta property="og:type" content="website" /> |
| 76 | + <meta property="og:url" content="https://openchakra.app" /> |
| 77 | + <meta |
| 78 | + property="og:image:url" |
| 79 | + content="https://openchakra.app/images/og-graph-color.png" |
| 80 | + /> |
| 81 | + </Head> |
| 82 | + ) |
| 83 | +} |
| 84 | + |
| 85 | +export default Metadata |
0 commit comments