-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React from "react"; | ||
import Head from "next/head"; | ||
|
||
export const Meta = () => { | ||
const image = "/preview.png"; | ||
const title = "ToolEmpire - Innovative tools for empire builders."; | ||
const description = | ||
"Discover a treasure trove of powerful tools designed to empower empire builders like you. Whether you're a designer, marketer, developer, or entrepreneur, our site offers an array of essential utilities at your fingertips."; | ||
const url = "https://tool-empire.vercel.app"; | ||
return ( | ||
<Head> | ||
<title>{title}</title> | ||
<meta name="title" content={title} /> | ||
<meta name="description" content={description} /> | ||
<meta | ||
name="keywords" | ||
content="Tool Empire, ColorMagic, FontWise, CodeGlow, Pdf" | ||
></meta> | ||
|
||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content={url} /> | ||
<meta property="og:title" content={title} /> | ||
<meta property="og:description" content={description} /> | ||
<meta property="og:image" content={image} /> | ||
|
||
<meta property="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:url" content={url} /> | ||
<meta property="twitter:title" content={title} /> | ||
<meta property="twitter:description" content={description} /> | ||
<meta property="twitter:image" content={image} /> | ||
<link rel="icon" href="/favicon.png" type="image/png" /> | ||
</Head> | ||
); | ||
}; |