diff --git a/public/favicon.ico b/public/favicon.ico
index 718d6fea48..6778d9da94 100644
Binary files a/public/favicon.ico and b/public/favicon.ico differ
diff --git a/public/images/metadata-gopher.png b/public/images/metadata-gopher.png
new file mode 100644
index 0000000000..83cfdc617c
Binary files /dev/null and b/public/images/metadata-gopher.png differ
diff --git a/public/vercel.svg b/public/vercel.svg
deleted file mode 100644
index fbf0e25a65..0000000000
--- a/public/vercel.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/src/components/UI/PageMetadata.tsx b/src/components/UI/PageMetadata.tsx
index 5cb76a4ae6..35a1c7ba6d 100644
--- a/src/components/UI/PageMetadata.tsx
+++ b/src/components/UI/PageMetadata.tsx
@@ -13,7 +13,7 @@ export const PageMetadata: React.FC = ({ title, description, image }) =>
const router = useRouter();
const url = `${SITE_URL}${router.asPath}`;
const fullTitle = `${title} | ${SITE_NAME}`;
- const defaultOgImage = `${SITE_URL}/images/pages/gopher-downloads-front-light.svg`; // TODO: update with right image
+ const defaultOgImage = `${SITE_URL}/images/metadata-gopher.png`;
const ogImage = !image ? defaultOgImage : `${SITE_URL}${image}`;
return (
@@ -43,7 +43,10 @@ export const PageMetadata: React.FC = ({ title, description, image }) =>
{/* patch to force a cache invalidation of twitter's card bot */}
-
+ {/* viewport */}
+
+ {/* favicon */}
+
);
};
diff --git a/src/components/UI/downloads/SpecificVersionsSection.tsx b/src/components/UI/downloads/SpecificVersionsSection.tsx
index 2909379d63..aa619529bb 100644
--- a/src/components/UI/downloads/SpecificVersionsSection.tsx
+++ b/src/components/UI/downloads/SpecificVersionsSection.tsx
@@ -1,4 +1,4 @@
-import { Box, Flex, Image, Stack } from '@chakra-ui/react';
+import { Box, Flex, Grid, GridItem, Image, Stack } from '@chakra-ui/react';
import { FC } from 'react';
import { GopherHomeLinks } from '../svgs';
@@ -8,31 +8,33 @@ interface Props {
export const SpecificVersionsSection: FC = ({ children }) => {
return (
-
-
-
-
-
-
-
- Specific Versions
-
-
- {children}
-
-
+
+
+
+ {/* TODO: replace with animated/video version */}
+
+
+
+
+
+
+
+
+
+
+ Specific Versions
+
+
+ {children}
+
+
+
);
};
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 1ca4bb54fd..d49a3bb476 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -142,7 +142,7 @@ const HomePage: NextPage = ({}) => {
-
+
{/* TODO: replace with animated/video version */}
diff --git a/src/theme/foundations/textStyles.ts b/src/theme/foundations/textStyles.ts
index c8ac62093b..9c7f807665 100644
--- a/src/theme/foundations/textStyles.ts
+++ b/src/theme/foundations/textStyles.ts
@@ -10,7 +10,7 @@ export const textStyles = {
h2: {
fontFamily: 'heading',
fontWeight: 400,
- fontSize: '1.5rem',
+ fontSize: { base: '1.5rem', md: '1.75rem' },
lineHeight: 'normal',
letterSpacing: '0.04em',
color: 'body'