Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/fix seo #196

Merged
merged 3 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _tests_/pages/index.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe("Glosseta Landing Page", () => {

expect(glossetaContainer).toBeInTheDocument();

expect(logo).toHaveAttribute("src", "/glosseta.png");
expect(logo).toHaveAttribute("src", "/glosseta_social_banner.png");
expect(logo).toHaveAttribute("alt", "Glosseta logo");

expect(glossetaDescription).toBeInTheDocument();
Expand Down
Binary file added public/icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"enspectButtonTitle": "ENSpect",
"scrollToTheTopButton": "Click here to scroll to the top of the page",

"glossetaDescription": "Glosseta is a decentralized, open-source glossary meant to help people explore and learn the terminology behind web3",
"glossetaSEODescription": "Glosseta is your companion for demystifying web3 and it's ecosystem",
"glossetaDescription": "Glosseta is a decentralized, open-source web3 glossary meant to help people explore and learn the terminology behind blockchain, nfts and crypto",
"glossetaSEODescription": "Glosseta is a decentralized, open-source web3 glossary meant to help people explore and learn the terminology behind blockchain, nfts and crypto",

"searchInputGroupAriaLabel" : "Search Bar",
"searchIconAriaLabel" : "Magnifying glass image",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function SEO() {
name="description"
content={t("glossetaSEODescription")}
/>
<link rel="icon" href="/glosseta_icon.png" />
<link rel="icon" href="/icon.jpg" />
{/* Open Graph / Facebook */}
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.glosseta.com" />
Expand Down
7 changes: 3 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {
VStack,
Image,
chakra,
Heading,
Text,
Box,
Container,
Expand All @@ -21,13 +20,13 @@ const Home: NextPage = () => {

return (
<PageLayout>
<Container maxW={{ base: "sm", sm: "xl" }} marginTop="-65px">
<Container maxW={{ base: "sm", sm: "xl" }}>
<VStack spacing={5}>
<Image
title="glosseta-logo"
src="/glosseta.png"
src="/glosseta_social_banner.png"
alt="Glosseta logo"
width={300}
width={400}
/>
</VStack>
</Container>
Expand Down
Loading