Skip to content

Commit

Permalink
Merge pull request #110 from ethersphere/staging
Browse files Browse the repository at this point in the history
Package updates, Jan news, new section
  • Loading branch information
martink635 authored Feb 7, 2024
2 parents afa3de5 + c21d743 commit be9256e
Show file tree
Hide file tree
Showing 5 changed files with 370 additions and 276 deletions.
2 changes: 1 addition & 1 deletion components/common/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Card: React.FC<CardProps> = ({
return (
<div
className={cn(
"col-span-12 md:col-span-6 lg:col-span-4 border border-[#2D3843] rounded-xl overflow-hidden bg-[#1F2831]/70 shadow-dark ",
"col-span-12 md:col-span-6 lg:col-span-4 border border-[#2D3843] rounded-xl overflow-hidden bg-[#1F2831]/70 shadow-dark",
className
)}
>
Expand Down
8 changes: 7 additions & 1 deletion components/sections/GeneralSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import GridContainer from "../common/GridContainer";

type GeneralSectionProps = {
textColor?: "text-black" | "text-gray-100";
className?: string;
content: {
tagline?: string;
title: string;
Expand All @@ -17,12 +18,17 @@ type GeneralSectionProps = {
};

const GeneralSection: React.FC<GeneralSectionProps> = ({
className = "",
content,
textColor = "text-gray-100",
}) => {
return (
<section
className={cx("relative flex justify-center overflow-hidden ", textColor)}
className={cx(
"relative flex justify-center overflow-hidden ",
textColor,
className
)}
>
<Container className="flex flex-col py-40 md:py-48">
<GridContainer>
Expand Down
38 changes: 32 additions & 6 deletions data/pages/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -204,16 +204,16 @@
}
},
{
"href": "https://blog.ethswarm.org/foundation/2024/monthly-development-update-december-2023/",
"href": "https://blog.ethswarm.org/foundation/2024/monthly-development-update-january-2024",
"image": {
"src": "https://blog.ethswarm.org/uploads/dev-update-dec.png",
"alt": "Monthly Development Update – December 2023"
"src": "https://blog.ethswarm.org/uploads/dev-update-feb.png",
"alt": "Monthly Development Update – January 2024"
},
"title": "Monthly Development Update – December 2023",
"content": "The December release of Bee 1.18.2 upgrades the previous version by improving sync intervals for nodes to collect missing chunks and stabilises CPU usage.",
"title": "Monthly Development Update – January 2024",
"content": "In January, the Bee Track team focused on resolving network issues that appear to have a common denominator – the local store.",
"cta": {
"title": "Read more ->",
"href": "https://blog.ethswarm.org/foundation/2024/monthly-development-update-december-2023/",
"href": "https://blog.ethswarm.org/foundation/2024/monthly-development-update-january-2024/",
"background": "transparent",
"color": "white",
"arrow": true
Expand Down Expand Up @@ -245,6 +245,32 @@
]
}
},
"decentralise": {
"tagline": "Decentralise web",
"title": "Your decentralised web3 dapp in 4 steps",
"features": [
{
"title": "1. Fork on GitHub",
"content": "Find a forkable project that should be decentralised or extended.",
"className": "lg:col-span-3"
},
{
"title": "2. Connect to FDP",
"content": "Extend it with the Fair data protocol so that users have their data saved in their private data store.",
"className": "lg:col-span-3"
},
{
"title": "3. Upload to Swarm",
"content": "Once hosted on Swarm it becomes accessible to all, with essentially zero hosting costs for developers.",
"className": "lg:col-span-3"
},
{
"title": "4. Grow through FDP",
"content": "Submit requests to be added in Fairdrive’s dapp store and make it available to existing Fairdrive users.",
"className": "lg:col-span-3"
}
]
},
"builders": {
"tagline": "One Swarm, united in PLUR, guided by virtue",
"title": "Build on Swarm",
Expand Down
Loading

0 comments on commit be9256e

Please sign in to comment.