File size: 4,259 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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
import {
Button,
Container,
Flex,
HStack,
Heading,
Image,
Span,
Stack,
Tabs,
Text,
} from "@chakra-ui/react"
import Link from "next/link"
// import { DemoCode } from "../demo-code"
import { Blob } from "./blob"
// import { AccessibilityDemo } from "./data/accessibility-demo"
import { BlitzFillIcon } from "./icons"
const Intro = () => (
<Stack gap={{ base: "4", md: "10" }}>
<Stack gap={{ base: "3", md: "7" }} align="flex-start">
<Stack gap={{ base: "3", md: "6" }}>
<HStack gap="4" color="teal.500">
<BlitzFillIcon />
<Text fontWeight="bold">Accessible UI Components</Text>
</HStack>
<Heading textStyle={{ base: "3xl", md: "5xl" }} fontWeight="bold">
Less code. More speed
</Heading>
</Stack>
<Text textStyle={{ base: "lg", md: "2xl" }}>
Meet the system for modern product development.{" "}
<Span color="gray.400">
Streamline issues, projects, and product roadmaps.
</Span>
</Text>
</Stack>
<Button
asChild
colorPalette="teal"
size={{ base: "md", md: "lg" }}
bg="teal.500"
color="black"
w="fit-content"
px="8"
>
<Link href="/docs/get-started/installation">Start Building</Link>
</Button>
</Stack>
)
const Testimonial = () => (
<Stack
gap={{ base: "4", md: "10" }}
pl={{ base: "4", md: "9" }}
borderLeft="solid 4px"
borderColor="teal.500"
>
<Text color="gray.400">
“Chakra UI is glorious. Dark mode support looks amazing and it is 100%
built-in. I love the consistent use of focus styling and the subtle
animation. Great care for accessibility throughout. It is a guiding
principle of the design system.”
</Text>
<HStack justify="space-between">
<Stack gap="1" fontWeight="medium">
<Text>Guillermo Rauch</Text>
<Text color="gray.400">CEO / Vercel</Text>
</Stack>
<Image
rounded="lg"
src="https://avatars.githubusercontent.com/u/13041"
alt="Guillermo Rauch"
w="12"
h="12"
objectFit="contain"
/>
</HStack>
</Stack>
)
const CodePreviewSection = () => (
<Flex
css={{
"&, & *": {
minW: "0",
},
}}
bg="#040A0A"
border="solid 1px"
borderColor="#001B18"
flex="1"
h="full"
>
<Tabs.Root
variant="plain"
defaultValue="Preview"
w="full"
display="flex"
flexDir="column"
>
<Tabs.List p="2">
{["Preview", "Code"].map((tab) => (
<Tabs.Trigger
key={tab}
value={tab}
bg={{ base: "#050D0D/10", _selected: "teal.500/10!" }}
rounded="0"
cursor="pointer"
>
{tab}
</Tabs.Trigger>
))}
</Tabs.List>
<Tabs.ContentGroup rounded="md" overflow="hidden" h="full">
<Tabs.Content
value="Preview"
mt="0"
h="full"
display="flex"
justifyContent="center"
alignItems="center"
py="6"
>
{/* <AccessibilityDemo /> */}
</Tabs.Content>
<Tabs.Content
value="Code"
mt="0"
css={{
"& pre": {
overflow: "auto",
},
}}
>
{/* <DemoCode
name="accessibility-demo"
extension="tsx"
opts={{
lang: "tsx",
}}
/> */}
</Tabs.Content>
</Tabs.ContentGroup>
</Tabs.Root>
</Flex>
)
export const Accessibility = async () => (
<Container>
<Flex justify="center">
<Flex
gap={{ base: "10", md: "20" }}
flex="1"
pos="relative"
direction={{ base: "column", md: "row" }}
>
<Blob
width="765px"
height="765px"
top="-5px"
left="-50%"
bottom="-180px"
/>
<Blob width="765px" height="765px" top="-70%" right="-20%" />
<Stack gap={{ base: "6", md: "12" }} flex="1">
<Intro />
<Testimonial />
</Stack>
<CodePreviewSection />
</Flex>
</Flex>
</Container>
)
|