Skip to content

Commit

Permalink
🐛 Fix Docusaurus landing images (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
raulrpearson committed Mar 5, 2023
1 parent 8395eab commit 7d7fff2
Show file tree
Hide file tree
Showing 16 changed files with 10 additions and 393 deletions.
11 changes: 5 additions & 6 deletions docusaurus/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Essential Eth',
tagline: "🪶 A replacement for ethers & web3 that's 20x smaller",
url: 'https://your-docusaurus-test-site.com',
tagline: "A replacement for ethers & web3 that's 20x smaller",
url: 'https://eeth.dev/',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
favicon:
'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/325/feather_1fab6.png',
favicon: '/img/logo.png',
organizationName: 'earnifi', // Usually your GitHub org/user name.
projectName: 'essential-eth', // Usually your repo name.
plugins: [
Expand Down Expand Up @@ -53,8 +52,8 @@ const config = {
navbar: {
title: 'Essential Eth',
logo: {
alt: 'My Site Logo',
src: 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/325/feather_1fab6.png',
alt: 'Logo',
src: '/img/logo.png',
},
items: [
{
Expand Down
10 changes: 5 additions & 5 deletions docusaurus/src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface FeatureItem {
const FeatureList: FeatureItem[] = [
{
title: 'Lite',
src: 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/325/feather_1fab6.png',
src: '/img/feather.png',
description: (
<>
Essential Eth was designed from the ground up to be 20x smaller than
Expand All @@ -26,7 +26,7 @@ const FeatureList: FeatureItem[] = [
},
{
title: 'Fast',
src: 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/325/high-voltage_26a1.png',
src: '/img/high-voltage.png',
description: (
<>
The bundle size of essential-eth is <strong>less than 5kb</strong> for
Expand All @@ -42,7 +42,7 @@ const FeatureList: FeatureItem[] = [
},
{
title: 'Tested and Typed',
src: 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/325/test-tube_1f9ea.png',
src: '/img/test-tube.png',
description: (
<>
With full TypeScript integration and jest tests, you can enjoy fewer
Expand All @@ -52,7 +52,7 @@ const FeatureList: FeatureItem[] = [
},
{
title: 'Easy to Try',
src: 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/apple/325/sparkles_2728.png',
src: '/img/sparkles.png',
description: (
<>
Essential Eth matches the API of ethers.js as closely as possible. This
Expand All @@ -62,7 +62,7 @@ const FeatureList: FeatureItem[] = [
},
{
title: 'Ready for Production',
src: 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/google/313/crossed-swords_2694-fe0f.png',
src: '/img/crossed-swords.png',
description: (
<>
Used in production by over 100,000 visitors per month on{' '}
Expand Down
Binary file added docusaurus/static/img/crossed-swords.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docusaurus/static/img/docusaurus.png
Binary file not shown.
Binary file removed docusaurus/static/img/favicon.ico
Binary file not shown.
Binary file added docusaurus/static/img/feather.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docusaurus/static/img/high-voltage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docusaurus/static/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion docusaurus/static/img/logo.svg

This file was deleted.

Binary file added docusaurus/static/img/sparkles.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docusaurus/static/img/test-tube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file removed docusaurus/static/img/tutorial/localeDropdown.png
Binary file not shown.
Loading

0 comments on commit 7d7fff2

Please sign in to comment.