Skip to content

Commit

Permalink
chore(website): fix header font size in build page
Browse files Browse the repository at this point in the history
  • Loading branch information
cedoor committed Jan 11, 2024
1 parent a9d55bd commit 064e9fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/website/src/app/build/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Flex, Link, Text, VStack, Box, Image } from "@chakra-ui/react"
import { Flex, Link, Text, VStack, Box, Image, Heading } from "@chakra-ui/react"
import ActionCard from "../../components/ActionCard"
import ToolsCard from "../../components/ToolsCard"
import IconArrowRight from "../../icons/IconArrowRight"
Expand Down Expand Up @@ -60,10 +60,10 @@ export default function Build() {
return (
<VStack justify="center">
<VStack mt="90px">
<Text textAlign="center" fontSize={{ base: "40px", md: "72px" }}>
<Heading fontSize={{ base: "40px", sm: "46px", md: "72px" }} textAlign="center">
Let’s build something new
</Text>
<Text textAlign="center" fontSize={{ base: "16px", md: "20px" }} color="text.400" mt="14px">
</Heading>
<Text textAlign="center" fontSize={{ base: "16px", sm: "18px", md: "20px" }} color="text.400" mt="14px">
Jumpstart your app development process with these building tools.
</Text>
<VStack mt="64px">
Expand Down

0 comments on commit 064e9fc

Please sign in to comment.