Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions workspaces/website/src/blocks/HomepageHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import { Heading } from "@ui/Typography/Heading";
import { Text } from "@ui/Typography/Text";
import { Intro } from "./Intro";
import ProvisionsPopup from "@ui/ProvisionsPopup/ProvisionsPopup";
import { gtmEvent } from "src/utils/utils";
import { HiArrowTopRightOnSquare } from "react-icons/hi2";

type Props = {
readonly seo: {
Expand Down Expand Up @@ -120,27 +122,28 @@ export const HomepageHero = ({ seo }: Props) => {
>
<Button
href="/en/developers"
size="lg"
size="xl"
fontSize="lg"
minW="210px"
variant="primaryHero"
>
Build on Starknet
</Button>
<Button
size="lg"
fontSize="lg"
gap={2}
variant="secondaryHero"
href="https://starkgate.starknet.io/"
target="_blank"
onClick={() => gtmEvent("Bridge_button_click")}
>
Bridge
<HiArrowTopRightOnSquare strokeWidth={0.5} />
</Button>
</Stack>
</Box>
<Box
zIndex={0}
order={{ base: 0, lg: 1 }}
// boxSize={{ base: "20", lg: "8" }}
/>
<Box zIndex={0} order={{ base: 0, lg: 1 }} />
<Img
position="relative"
marginRight={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const NavbarStickyBanner = ({
textAlign={{ base: "left", md: "center" }}
color="white"
_dark={{ color: "snNavy" }}
width={{ base: "245px", sm: "unset" }}
width={{ base: "unset", sm: "245px" }}
>
{text}
</Text>
Expand Down