diff --git a/pages/index.tsx b/pages/index.tsx index 00b1ecf..d10ab3a 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -3,6 +3,7 @@ import Companies from "src/sections/Companies"; import About from "src/sections/About"; import FAQ from "src/sections/FAQ"; import Hero from "src/sections/Hero"; +import SEO from "src/components/SEO"; import StarCanvas from "src/components/StarCanvas"; import "src/styles/Home.module.scss"; @@ -10,6 +11,7 @@ import "src/styles/Home.module.scss"; const Home: NextPage = () => { return (
+ diff --git a/public/favicon.ico b/public/favicon.ico index 718d6fe..8cdfb7f 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/src/components/SEO/index.tsx b/src/components/SEO/index.tsx new file mode 100644 index 0000000..6e80e4f --- /dev/null +++ b/src/components/SEO/index.tsx @@ -0,0 +1,36 @@ +import Head from "next/head"; + +const SEO: React.FC = () => { + return ( + + {/* google indexing data */} + + Space 2022 + + + + {/* link sharing data */} + + {/* page url to be used as permanent id */} + + {/* type of content */} + + {/* actual website title */} + + {/* title to display for the specific link being shared */} + + {/* preview description text */} + + + {/* + + + */} + + ); +}; + +export default SEO;