-
Notifications
You must be signed in to change notification settings - Fork 377
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
1 parent
d24fd89
commit 234ba5d
Showing
3 changed files
with
32 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { | ||
Alert, | ||
AlertDescription, | ||
AlertIcon, | ||
AlertTitle, | ||
Container, | ||
Link, | ||
} from "@chakra-ui/react"; | ||
|
||
export const Disclaimer = () => { | ||
return ( | ||
<Alert status="warning"> | ||
<Container maxW={"container.xl"} display={"flex"} flexDirection={"row"}> | ||
<AlertIcon /> | ||
<AlertTitle fontSize={"sm"}>Disclaimer</AlertTitle> | ||
<AlertDescription fontSize={"sm"}> | ||
The use case of this template is inspired by the{" "} | ||
<Link color="teal.500" href={"https://www.greencart.vet/"}> | ||
GreenCart Dapp | ||
</Link> | ||
. The code has been built from scratch and does not contain any | ||
references to the GreenCart codebase. | ||
</AlertDescription> | ||
</Container> | ||
</Alert> | ||
); | ||
}; |
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 @@ | ||
export * from "./Disclaimer"; |