diff --git a/public/meta/article-og.png b/public/meta/article-og.png deleted file mode 100644 index 6efccdd8..00000000 Binary files a/public/meta/article-og.png and /dev/null differ diff --git a/public/meta/developer-portal-og-image.jpg b/public/meta/developer-portal-og-image.jpg deleted file mode 100644 index 453558c4..00000000 Binary files a/public/meta/developer-portal-og-image.jpg and /dev/null differ diff --git a/public/meta/developer.jpg b/public/meta/developer.jpg new file mode 100644 index 00000000..3d8bbdbd Binary files /dev/null and b/public/meta/developer.jpg differ diff --git a/public/meta/ecosystem-og-image.jpg b/public/meta/ecosystem-og-image.jpg deleted file mode 100644 index 90c3d256..00000000 Binary files a/public/meta/ecosystem-og-image.jpg and /dev/null differ diff --git a/public/meta/ecosystem.jpg b/public/meta/ecosystem.jpg new file mode 100644 index 00000000..1f01e4dd Binary files /dev/null and b/public/meta/ecosystem.jpg differ diff --git a/public/meta/glossary-og-image.jpg b/public/meta/glossary-og-image.jpg deleted file mode 100644 index de26dbec..00000000 Binary files a/public/meta/glossary-og-image.jpg and /dev/null differ diff --git a/public/meta/light.jpg b/public/meta/light.jpg new file mode 100644 index 00000000..66de2689 Binary files /dev/null and b/public/meta/light.jpg differ diff --git a/public/meta/og-image-default.jpg b/public/meta/og-image-default.jpg new file mode 100644 index 00000000..337f07c0 Binary files /dev/null and b/public/meta/og-image-default.jpg differ diff --git a/public/meta/og-image.jpg b/public/meta/og-image.jpg deleted file mode 100644 index 0509d3fe..00000000 Binary files a/public/meta/og-image.jpg and /dev/null differ diff --git a/public/meta/tia.jpg b/public/meta/tia.jpg new file mode 100644 index 00000000..2f875f3e Binary files /dev/null and b/public/meta/tia.jpg differ diff --git a/src/components/Meta/Meta.js b/src/components/Meta/Meta.js index f44619e0..2fb7b2ce 100644 --- a/src/components/Meta/Meta.js +++ b/src/components/Meta/Meta.js @@ -1,23 +1,22 @@ const meta = (seo = { title: null, description: null, image: null }) => { - const defaultSeo = { - title: "Celestia", - description: - "Celestia is the modular blockchain powering unstoppable applications with full-stack customizability.", - image: "/meta/og-image.jpg", - }; + const defaultSeo = { + title: "Celestia", + description: "Celestia is the modular blockchain powering unstoppable applications with full-stack customizability.", + image: "/meta/og-image-default.jpg", + }; - const { title, description, image } = seo; - const metaTitle = title ? `${title} | ${defaultSeo.title}` : defaultSeo.title; - const metaDescription = description || defaultSeo.description; - const metaImage = image || defaultSeo.image; + const { title, description, image } = seo; + const metaTitle = title ? `${title} | ${defaultSeo.title}` : defaultSeo.title; + const metaDescription = description || defaultSeo.description; + const metaImage = image || defaultSeo.image; - return { - title: metaTitle, - description: metaDescription, - openGraph: { - images: [`${process.env.NEXT_PUBLIC_SITE_URL}${metaImage}`], - }, - }; + return { + title: metaTitle, + description: metaDescription, + openGraph: { + images: [`${process.env.NEXT_PUBLIC_SITE_URL}${metaImage}`], + }, + }; }; export default meta; diff --git a/src/data/build/seo.js b/src/data/build/seo.js index 16755641..8b64fde1 100644 --- a/src/data/build/seo.js +++ b/src/data/build/seo.js @@ -1,8 +1,7 @@ const seo = { - title: "Developer Portal", - description: - "The homepage for Celestia developers. Tutorials. Resources. Community.", - image: "/meta/developer-portal-og-image.jpg", + title: "Developer Portal", + description: "The homepage for Celestia developers. Tutorials. Resources. Community.", + image: "/meta/developer.jpg", }; export default seo; diff --git a/src/data/careers/seo.js b/src/data/careers/seo.js index 9cb43ab8..d1345927 100644 --- a/src/data/careers/seo.js +++ b/src/data/careers/seo.js @@ -1,7 +1,7 @@ const seo = { - title: "Careers", - description: - "Join our team of leading engineers, researchers, and entrepreneurs in pioneering the first modular blockchain design.", + title: "Careers", + description: "Join our team of leading engineers, researchers, and entrepreneurs in pioneering the first modular blockchain design.", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/community/seo.js b/src/data/community/seo.js index c4e6245e..47bd2392 100644 --- a/src/data/community/seo.js +++ b/src/data/community/seo.js @@ -1,7 +1,7 @@ const seo = { - title: "Community", - description: - "Discover community hubs, discussion forums, and resources that are used by the global Celestia community.", + title: "Community", + description: "Discover community hubs, discussion forums, and resources that are used by the global Celestia community.", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/ecosystem/seo.js b/src/data/ecosystem/seo.js index 86ed01e2..c6fc8a10 100644 --- a/src/data/ecosystem/seo.js +++ b/src/data/ecosystem/seo.js @@ -1,8 +1,7 @@ const seo = { - title: "Ecosystem", - description: - "Celestia Ecosystem provides a wide range of apps and services built in the Celestia ecosystem.", - image: "/meta/ecosystem-og-image.jpg", + title: "Ecosystem", + description: "Celestia Ecosystem provides a wide range of apps and services built in the Celestia ecosystem.", + image: "/meta/ecosystem.jpg", }; export default seo; diff --git a/src/data/faq/seo.js b/src/data/faq/seo.js index 2ddfdf37..c1bc0fb8 100644 --- a/src/data/faq/seo.js +++ b/src/data/faq/seo.js @@ -1,7 +1,7 @@ const seo = { - title: "FAQ", - description: "Find answers to frequently asked questions about Celestia.", - image: "/meta/og-image.jpg", + title: "FAQ", + description: "Find answers to frequently asked questions about Celestia.", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/glossary/seo.js b/src/data/glossary/seo.js index e46183cc..7aa9530b 100644 --- a/src/data/glossary/seo.js +++ b/src/data/glossary/seo.js @@ -1,7 +1,7 @@ const seo = { - title: "Glossary", - description: "Explore new terms about Celestia and modular blockchains.", - image: "/meta/og-image.jpg", + title: "Glossary", + description: "Explore new terms about Celestia and modular blockchains.", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/learn/seo.js b/src/data/learn/seo.js index 5784c35c..f155604e 100644 --- a/src/data/learn/seo.js +++ b/src/data/learn/seo.js @@ -1,8 +1,7 @@ const seo = { - title: "Learn Modular", - description: - "Welcome to learn modular, your go-to place to learn about modular blockchains and everything in between.", - image: "/meta/og-image.jpg", + title: "Learn Modular", + description: "Welcome to learn modular, your go-to place to learn about modular blockchains and everything in between.", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/press/seo.js b/src/data/press/seo.js index 89c80a41..93f9abed 100644 --- a/src/data/press/seo.js +++ b/src/data/press/seo.js @@ -1,7 +1,7 @@ const seo = { - title: "Press", - description: "Find branding, news, social channels, and press contacts.", - image: "/meta/og-image.jpg", + title: "Press", + description: "Find branding, news, social channels, and press contacts.", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/run-a-light-node/seo.js b/src/data/run-a-light-node/seo.js index a4d58051..07b49fe0 100644 --- a/src/data/run-a-light-node/seo.js +++ b/src/data/run-a-light-node/seo.js @@ -1,8 +1,7 @@ const seo = { - title: "Run a Node", - description: - "Build games with new capabilities. Celestia scales with the number of users so games can scale with their usebase.", - image: "/meta/og-image.jpg", + title: "Run a Node", + description: "Build games with new capabilities. Celestia scales with the number of users so games can scale with their usebase.", + image: "/meta/light.jpg", }; export default seo; diff --git a/src/data/tos/seo.js b/src/data/tos/seo.js index 7136ff2a..e361ecdb 100644 --- a/src/data/tos/seo.js +++ b/src/data/tos/seo.js @@ -1,5 +1,6 @@ const seo = { - title: "Terms of Service", + title: "Terms of Service", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/what-is-celestia/seo.js b/src/data/what-is-celestia/seo.js index 9f8b7cf2..6e2d9b1c 100644 --- a/src/data/what-is-celestia/seo.js +++ b/src/data/what-is-celestia/seo.js @@ -1,8 +1,8 @@ const seo = { - title: "What is Celestia?", - description: - "A complete beginner's guide to how Celestia works, its key benefits, and how anyone in the world will be able to create their own blockchain in minutes.", - image: "/meta/what-is-celestia-og-image.jpg", + title: "What is Celestia?", + description: + "A complete beginner's guide to how Celestia works, its key benefits, and how anyone in the world will be able to create their own blockchain in minutes.", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/what-is-da/seo.js b/src/data/what-is-da/seo.js index 751f8a9e..8b2a08d4 100644 --- a/src/data/what-is-da/seo.js +++ b/src/data/what-is-da/seo.js @@ -1,7 +1,7 @@ const seo = { - title: "What is DA?", - description: "", - image: "/meta/og-image.jpg", + title: "What is DA?", + description: "", + image: "/meta/og-image-default.jpg", }; export default seo; diff --git a/src/data/what-is-tia/seo.js b/src/data/what-is-tia/seo.js index 54585cb4..05b2e662 100644 --- a/src/data/what-is-tia/seo.js +++ b/src/data/what-is-tia/seo.js @@ -1,7 +1,7 @@ const seo = { - title: "What is TIA?", - description: "Learn about TIA, the native token of the Celestia blockchain.", - image: "/meta/og-image.jpg", + title: "What is TIA?", + description: "Learn about TIA, the native token of the Celestia blockchain.", + image: "/meta/tia.jpg", }; export default seo;