File size: 1,240 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
"use client"
import {
Box,
Center,
Container,
Heading,
SimpleGrid,
Span,
Stack,
} from "@chakra-ui/react"
import {
Ethereum,
Lattice,
LeonardoAI,
Lysnna,
Stately,
TrustPage,
Udacity,
Xata,
} from "./logos"
const partners = [
{ Logo: Lattice },
{ Logo: TrustPage },
{ Logo: Xata },
{ Logo: Lysnna },
{ Logo: Udacity },
{ Logo: Ethereum },
{ Logo: LeonardoAI },
{ Logo: Stately },
]
const PartnerGridRow = () => (
<SimpleGrid columns={{ base: 2, lg: 4 }}>
{partners.map(({ Logo }, index) => (
<Center
key={index}
height="88px"
borderWidth="0.5px"
borderColor={{ _light: "border", _dark: "#001B18" }}
_icon={{
scale: "0.8",
}}
>
<Logo />
</Center>
))}
</SimpleGrid>
)
export const PartnersSection = () => (
<Box py="20" pos="relative">
<Container>
<Stack gap="12">
<Heading textAlign="center" fontWeight="medium">
Built for modern product teams.
<br />
<Span color="fg.muted">
From next-gen startups to established enterprises.
</Span>
</Heading>
<PartnerGridRow />
</Stack>
</Container>
</Box>
)
|