-
Notifications
You must be signed in to change notification settings - Fork 0
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
4 changed files
with
50 additions
and
3 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,40 @@ | ||
import { Badge, Container, List, ListItem, Link } from "@chakra-ui/react"; | ||
import { Meta, Title } from "../../components/cert"; | ||
import P from "../../components/paragraph"; | ||
import Layout from "../../components/layouts/article"; | ||
import DownloadLink from "../../components/download-button"; | ||
|
||
const Post = () => { | ||
return ( | ||
<Layout title="Certificates"> | ||
<Container> | ||
<Title> | ||
Java Basic <Badge>December/2023</Badge> | ||
</Title> | ||
<P> | ||
I needed to use Java for my school projects, so I thought | ||
acquiring a certification in it could be beneficial. | ||
However, I would have preferred the certification to be in a | ||
more recent version of Java, rather than Java 7 or 8. | ||
</P> | ||
<List ml={4} my={4}> | ||
<ListItem> | ||
<Meta>Websites</Meta> | ||
<Link href="https://www.hackerrank.com/certificates/c8511ae167ed"> | ||
Validate Certificate | ||
</Link> | ||
</ListItem> | ||
<ListItem> | ||
<Meta>Download</Meta> | ||
<DownloadLink | ||
imageName="java_basic_hackerrank.avif" | ||
downloadText="Download Certificate" | ||
/> | ||
</ListItem> | ||
</List> | ||
</Container> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default Post; |
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
Binary file not shown.