Skip to content

Commit

Permalink
Merge branch 'feature/add-banner-to-modularsummit' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamás committed Jul 20, 2023
2 parents cc2b25e + bd3f6b8 commit 4663ca0
Show file tree
Hide file tree
Showing 11 changed files with 63 additions and 14 deletions.
12 changes: 6 additions & 6 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module.exports = {
title: `The first modular blockchain network`,
description: `Celestia is a modular consensus and data network, built to enable anyone to easily deploy their own blockchain with minimal overhead.`,
author: `@CelestiaOrg`,
// siteUrl: `https://celestia.org`,
siteUrl: `https://dev.lazyledger.org`, // <-- switch to this url for OG meta previews on https://dev.lazyledger.org
siteUrl: `https://celestia.org`,
// siteUrl: `https://dev.lazyledger.org`, // <-- switch to this url for OG meta previews on https://dev.lazyledger.org
image: `/celestia-default-og-image.jpg`,
},

Expand Down Expand Up @@ -77,10 +77,10 @@ module.exports = {
{
resolve: 'gatsby-plugin-robots-txt',
options: {
// host: "https://celestia.org",
host: "https://dev.lazyledger.org",
// sitemap: "https://celestia.org/sitemap.xml",
sitemap: "https://dev.lazyledger.org/sitemap.xml",
host: "https://celestia.org",
// host: "https://dev.lazyledger.org",
sitemap: "https://celestia.org/sitemap.xml",
// sitemap: "https://dev.lazyledger.org/sitemap.xml",
output: "/robots.txt",
policy: [{ userAgent: '*', allow: '/' }]
}
Expand Down
18 changes: 10 additions & 8 deletions src/components/layout.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import React from "react"
import React from "react";
import Header from "./header";
import Footer from "./footer";
import Banner from "./modules/banner";

export default function Layout({ children, footerBoxes }) {
return (
<>
<Header/>
{children}
<Footer FooterBoxes={footerBoxes}/>
</>
)
return (
<>
<Banner/>
<Header />
{children}
<Footer FooterBoxes={footerBoxes} />
</>
);
}
47 changes: 47 additions & 0 deletions src/datas/ecosystem/ecosystems.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ export const ecosystemCategories = [
text: '',
image: 'ecosystem/vistara.png',
url: 'https://docs.vistara.dev/'
},
{
title: 'Snapchain',
text: '',
image: 'ecosystem/snapchain.png',
url: 'https://www.snapchain.dev/'
}
]
},{
Expand Down Expand Up @@ -107,6 +113,12 @@ export const ecosystemCategories = [
text: '',
image: 'ecosystem/stackr.png',
url: 'https://www.stackrlabs.xyz/'
},
{
title: 'Cosmos SDK',
text: '',
image: 'ecosystem/cosmos-sdk.png',
url: 'https://cosmos.network/'
}
]
},{
Expand All @@ -124,6 +136,12 @@ export const ecosystemCategories = [
text: '',
image: 'ecosystem/cosmwasm.png',
url: 'https://cosmwasm.com/'
},
{
title: 'Cartesi',
text: '',
image: 'ecosystem/cartesi.png',
url: 'https://cartesi.io/'
}
]
},{
Expand Down Expand Up @@ -229,6 +247,12 @@ export const ecosystemCategories = [
image: 'ecosystem/argus.png',
url: 'https://argus.gg/'
},
{
title: 'Curio',
text: '',
image: 'ecosystem/curio.png',
url: 'https://www.curio.gg/'
},
{
title: 'Worlds',
text: '',
Expand Down Expand Up @@ -257,6 +281,11 @@ export const ecosystemCategories = [
text: '',
image: 'ecosystem/pklab.png',
url: 'https://bakingbad.dev/'
},{
title: 'Manta Network',
text: '',
image: 'ecosystem/manta.png',
url: 'https://manta.network/'
},
{
title: 'Modular cloud',
Expand Down Expand Up @@ -287,6 +316,24 @@ export const ecosystemCategories = [
text: '',
image: 'ecosystem/dora.png',
url: 'https://www.ondora.xyz/'
},
{
title: 'Cosmology',
text: '',
image: 'ecosystem/cosmology.png',
url: 'https://cosmology.tech/'
},
{
title: 'Blockless',
text: '',
image: 'ecosystem/blockless.png',
url: 'https://blockless.network/'
},
{
title: 'Numia',
text: '',
image: 'ecosystem/numia.png',
url: 'https://www.numia.xyz/'
}
]
}
Expand Down
Binary file added src/images/ecosystem/blockless.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 src/images/ecosystem/cartesi.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 src/images/ecosystem/cosmology.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 src/images/ecosystem/cosmos-sdk.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 src/images/ecosystem/curio.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 src/images/ecosystem/manta.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 src/images/ecosystem/numia.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 src/images/ecosystem/snapchain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4663ca0

Please sign in to comment.