|
| 1 | +// head |
| 2 | +import Head from "next/head"; |
| 3 | + |
| 4 | +const MetaTags = () => { |
| 5 | + return ( |
| 6 | + <Head> |
| 7 | + <meta |
| 8 | + name="apple-mobile-web-app-status-bar-style" |
| 9 | + content="black-translucent" |
| 10 | + /> |
| 11 | + <meta name="theme-color" content="#645AD3" /> |
| 12 | + |
| 13 | + <title>TryShape - Create, Export, Share, and Use any Shapes of your choice.</title> |
| 14 | + <meta |
| 15 | + name="description" |
| 16 | + content="TryShape is an opensource platform to create shapes of your choice using a simple, easy-to-use interface. You can create banners, circles, polygonal shapes, export them as SVG, PNG, and even as CSS." |
| 17 | + /> |
| 18 | + <meta |
| 19 | + name="keywords" |
| 20 | + content="tryshape, tryshape tapas, tyshape github, css, css clip path, shapes, css shapes, github shapes, clippy, clip path shapes, types of shapes, css clip path shape, shape tool, generate css shapes, tyshape easy" |
| 21 | + /> |
| 22 | + <link rel="canonical" href="https://tryshape.now.sh/" /> |
| 23 | + <link rel="apple-touch-icon" href="/favicon.ico" /> |
| 24 | + <link rel="icon" href="/favicon.ico" /> |
| 25 | + |
| 26 | + {/* Primary Meta Tags */} |
| 27 | + <meta |
| 28 | + name="title" |
| 29 | + content="TryShape - Create, Export, Share, and Use any Shapes of your choice." |
| 30 | + /> |
| 31 | + <meta |
| 32 | + name="description" |
| 33 | + content="TryShape is an opensource platform to create shapes of your choice using a simple, easy-to-use interface. You can create banners, circles, polygonal shapes, export them as SVG, PNG, and even as CSS." |
| 34 | + /> |
| 35 | + |
| 36 | + {/* Open Graph / Facebook */} |
| 37 | + <meta property="og:type" content="website" /> |
| 38 | + <meta property="og:url" content="https://tryshape.now.sh/" /> |
| 39 | + <meta |
| 40 | + property="og:title" |
| 41 | + content="TryShape - Create, Export, Share, and Use any Shapes of your choice." |
| 42 | + /> |
| 43 | + <meta |
| 44 | + property="og:description" |
| 45 | + content="TryShape is an opensource platform to create shapes of your choice using a simple, easy-to-use interface. You can create banners, circles, polygonal shapes, export them as SVG, PNG, and even as CSS." |
| 46 | + /> |
| 47 | + <meta |
| 48 | + property="og:image" |
| 49 | + content="https://tryshape.vercel.app/readme/landing.png" |
| 50 | + /> |
| 51 | + |
| 52 | + {/* Twitter */} |
| 53 | + <meta property="twitter:card" content="summary_large_image" /> |
| 54 | + <meta property="twitter:url" content="https://tryshape.now.sh/" /> |
| 55 | + <meta |
| 56 | + property="twitter:title" |
| 57 | + content="TryShape - Create, Export, Share, and Use any Shapes of your choice." |
| 58 | + /> |
| 59 | + <meta |
| 60 | + property="twitter:description" |
| 61 | + content="TryShape is an opensource platform to create shapes of your choice using a simple, easy-to-use interface. You can create banners, circles, polygonal shapes, export them as SVG, PNG, and even as CSS." |
| 62 | + /> |
| 63 | + <meta |
| 64 | + property="twitter:image" |
| 65 | + content="https://tryshape.vercel.app/readme/landing.png" |
| 66 | + /> |
| 67 | + </Head> |
| 68 | + ); |
| 69 | +}; |
| 70 | + |
| 71 | +export default MetaTags; |
0 commit comments