Skip to content

Commit

Permalink
fix double All category
Browse files Browse the repository at this point in the history
  • Loading branch information
gabros20 committed Aug 7, 2024
1 parent 5305b96 commit a34d65f
Show file tree
Hide file tree
Showing 19 changed files with 47 additions and 6 deletions.
16 changes: 16 additions & 0 deletions .next/build-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"polyfillFiles": [
"static/chunks/polyfills.js"
],
"devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [
"static/development/_buildManifest.js",
"static/development/_ssgManifest.js"
],
"rootMainFiles": [],
"pages": {
"/_app": []
},
"ampFirstPages": []
}
Binary file added .next/cache/webpack/client-development/0.pack.gz
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions .next/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"type": "commonjs"}
1 change: 1 addition & 0 deletions .next/react-loadable-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
1 change: 1 addition & 0 deletions .next/server/interception-route-rewrite-manifest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
self.__INTERCEPTION_ROUTE_REWRITE_MANIFEST="[]"
1 change: 1 addition & 0 deletions .next/server/middleware-build-manifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .next/server/middleware-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"version": 3,
"middleware": {},
"functions": {},
"sortedMiddleware": []
}
1 change: 1 addition & 0 deletions .next/server/middleware-react-loadable-manifest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
self.__REACT_LOADABLE_MANIFEST="{}"
1 change: 1 addition & 0 deletions .next/server/next-font-manifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .next/server/next-font-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"pages":{},"app":{},"appUsingSizeAdjust":false,"pagesUsingSizeAdjust":false}
1 change: 1 addition & 0 deletions .next/server/pages-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
1 change: 1 addition & 0 deletions .next/static/chunks/polyfills.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .next/static/development/_buildManifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .next/static/development/_ssgManifest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
2 changes: 2 additions & 0 deletions .next/trace

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/framework-tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const FrameworkTabs = ({ content, categories, anchorId, section }) => {
}
}, [section, categories.items]);

const allUniqueCategories = ["All", ...new Set(categories.items.flatMap((item) => item.category))];
const allUniqueCategories = [...new Set(categories.items.flatMap((item) => item.category))];

return (
<section className='frameworks' id={`${content.items[anchorId].title.replace(/\s+/g, "-").toLowerCase()}`}>
Expand Down
12 changes: 10 additions & 2 deletions src/components/sections/integrate-section.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,22 @@ const IntegrateSection = ({ content, anchorId }) => {
<div className={"col box me-md-1"}>
<div className={"title"}>Blobstream</div>
<div className={"text"}>Use Celestia as the DA layer for your Ethereum L2.</div>
<a href={"https://docs.celestia.org/developers/blobstream/"} className={"button button-simple plausible-event-name=Blobstream--Developer_Portal-Integrate_Section"} target="_blank">
<a
href={"https://docs.celestia.org/developers/blobstream/"}
className={"button button-simple plausible-event-name=Blobstream--Developer_Portal-Integrate_Section"}
target='_blank'
>
Blobstream documentation
</a>
</div>
<div className={"col box ms-md-1"}>
<div className={"title"}>Node API</div>
<div className={"text"}>Use the celestia-node API to publish and retrieve transactions from Celestia.</div>
<a href={"https://node-rpc-docs.celestia.org/?version=v0.12.0/"} className={"button button-simple plausible-event-name=Node_API--Developer_Portal-Integrate_Section"} target="_blank">
<a
href={"https://node-rpc-docs.celestia.org/?version=v0.12.0/"}
className={"button button-simple plausible-event-name=Node_API--Developer_Portal-Integrate_Section"}
target='_blank'
>
Node API Documentation
</a>
</div>
Expand Down
4 changes: 1 addition & 3 deletions src/pages/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ const Build = () => {
<div className={"container"}>
<div className={"row justify-content-center"}>
<div className={"col-auto"}>
<h1 style={{ color: "red" }} className={"text-center"}>
{heroData.title}
</h1>
<h1 className={"text-center"}>{heroData.title}</h1>
</div>
</div>
</div>
Expand Down

0 comments on commit a34d65f

Please sign in to comment.