2024-05-21 16:58:55 +05:30
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
import { Box, Button, Image, Text, Grid, GridItem } from "@chakra-ui/react";
|
|
|
|
|
import { Container } from "@chakra-ui/react";
|
|
|
|
|
import {
|
|
|
|
|
List,
|
|
|
|
|
ListItem,
|
|
|
|
|
ListIcon,
|
|
|
|
|
OrderedList,
|
|
|
|
|
UnorderedList,
|
|
|
|
|
} from "@chakra-ui/react";
|
|
|
|
|
import vector2 from "../../../assets/images/vector2.png";
|
|
|
|
|
|
|
|
|
|
const StaticSubnetTwo = () => {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Box display={"flex"} position={"absolute"} top={"-70px"}>
|
|
|
|
|
<Button
|
|
|
|
|
position={"relative"}
|
|
|
|
|
background={"transparent"}
|
|
|
|
|
textTransform={"uppercase"}
|
|
|
|
|
width={"165px"}
|
|
|
|
|
height={"57px"}
|
|
|
|
|
borderRadius={"28.5px"}
|
|
|
|
|
color={"#fff"}
|
|
|
|
|
border={"1px solid #A5A5A5"}
|
|
|
|
|
fontSize={"16px"}
|
2024-06-07 15:34:37 +05:30
|
|
|
pointerEvents={"none"}
|
2024-05-21 16:58:55 +05:30
|
|
|
_after={{
|
|
|
|
|
content: "''",
|
|
|
|
|
position: "absolute",
|
|
|
|
|
background: `url(${vector2})`,
|
|
|
|
|
backgroundRepeat: "no-repeat",
|
|
|
|
|
width: "340px",
|
|
|
|
|
height: "100%",
|
|
|
|
|
left: "165px",
|
|
|
|
|
top: "-10px",
|
|
|
|
|
}}
|
|
|
|
|
_hover={{
|
|
|
|
|
background: "transparent",
|
|
|
|
|
width: "165px",
|
|
|
|
|
height: "57px",
|
|
|
|
|
borderRadius: "28.5px",
|
|
|
|
|
color: "#fff",
|
|
|
|
|
border: "1px solid #A5A5A5",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Easier
|
|
|
|
|
</Button>
|
|
|
|
|
</Box>
|
|
|
|
|
<UnorderedList color={"#E1E1E1"}>
|
|
|
|
|
<ListItem fontSize={"14px"}>
|
|
|
|
|
Leverage own infrastructure for block space
|
|
|
|
|
</ListItem>
|
|
|
|
|
<ListItem fontSize={"14px"}>
|
|
|
|
|
Smart contracts in Rust , GoLang and C/C++
|
|
|
|
|
</ListItem>
|
|
|
|
|
<ListItem fontSize={"14px"}>
|
|
|
|
|
WASM compiler for smooth code migration
|
|
|
|
|
</ListItem>
|
|
|
|
|
</UnorderedList>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default StaticSubnetTwo;
|