-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
503 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
export const items = [ | ||
{ | ||
value: "1", | ||
title: "Team", | ||
description: "For small teams and early-stage startups.", | ||
price: "50", | ||
features: { | ||
users: { | ||
name: "Up to 10 users", | ||
value: true, | ||
}, | ||
bandwidth: { | ||
name: "500 GB in free bandwidth", | ||
value: true, | ||
}, | ||
migration: { | ||
name: "Migration support", | ||
value: false, | ||
}, | ||
support: { | ||
name: "Dedicated support", | ||
value: false, | ||
}, | ||
hibba: { | ||
name: "HIPAA/BAA support", | ||
value: false, | ||
}, | ||
}, | ||
}, | ||
{ | ||
value: "2", | ||
title: "Organization", | ||
description: "For larger teams and established companies.", | ||
price: "180", | ||
features: { | ||
users: { | ||
name: "Up to 50 users", | ||
value: true, | ||
}, | ||
bandwidth: { | ||
name: "1 TB in free bandwidth", | ||
value: true, | ||
}, | ||
migration: { | ||
name: "Migration support", | ||
value: false, | ||
}, | ||
support: { | ||
name: "Dedicated support", | ||
value: false, | ||
}, | ||
hibba: { | ||
name: "HIPAA/BAA support", | ||
value: false, | ||
}, | ||
}, | ||
}, | ||
{ | ||
value: "300", | ||
title: "Enterprise", | ||
description: "For large organizations with advanced needs.", | ||
price: "320", | ||
features: { | ||
users: { | ||
name: "Unlimited users", | ||
value: true, | ||
}, | ||
bandwidth: { | ||
name: "Custom bandwidth usage", | ||
value: true, | ||
}, | ||
migration: { | ||
name: "Migration support", | ||
value: true, | ||
}, | ||
support: { | ||
name: "Dedicated support", | ||
value: true, | ||
}, | ||
hibba: { | ||
name: "HIPAA/BAA support", | ||
value: true, | ||
}, | ||
}, | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Icon, Input, InputGroup, InputRightElement } from "@chakra-ui/react" | ||
import { FaSearch } from "react-icons/fa" | ||
|
||
const Searchbar = () => { | ||
return ( | ||
<> | ||
<InputGroup mx={8}> | ||
<Input | ||
variant="filled" | ||
type="text" | ||
placeholder="Search" | ||
fontSize={{ base: "sm", md: "inherit" }} | ||
borderRadius="8px" | ||
/> | ||
<InputRightElement pointerEvents="none"> | ||
<Icon as={FaSearch} color="ui.dim" /> | ||
</InputRightElement> | ||
</InputGroup> | ||
</> | ||
) | ||
} | ||
|
||
export default Searchbar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.