-
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.
Cont: Additional customization and content adds
- Loading branch information
Showing
52 changed files
with
442 additions
and
555 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,20 @@ | ||
--- | ||
title: Welcome Docusaurus | ||
authors: | ||
- adamj | ||
- name: Adam jolicoeur | ||
title: Co-creator of Docusaurus 1 | ||
url: https://github.com/AdamJ | ||
image_url: https://github.com/AdamJ.png | ||
socials: | ||
x: mindreeper | ||
github: AdamJ | ||
threads: mindreeper | ||
tags: [design, hello, general, development, tips & tricks, resources, css, html, javascript] | ||
description: This is my first post on Docusaurus. | ||
image: https://i.imgur.com/mErPwqL.png | ||
hide_table_of_contents: false | ||
unlisted: true | ||
pagination_next: null | ||
pagination_prev: null | ||
--- |
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,12 @@ | ||
--- | ||
sidebar_position: 2 | ||
--- | ||
|
||
# Custom icons | ||
|
||
Based on requirements where the default libraries did not contain desired icons, I created custom ones to meet the stated requirements. | ||
|
||
[View on Figma](https://www.figma.com/AdamJ) | ||
[Download from GitHub](https://www.github.com/AdamJ) | ||
|
||
![Sample of custom icons](https://www.github.com/AdamJ) |
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
--- | ||
sidebar_position: 1 | ||
--- | ||
|
||
# Icon Libraries | ||
|
||
Below is a table of the various icon libraries that I use within my projects. | ||
|
||
| Library | Link | Paid | | ||
|:-- | :-- | :-- | | ||
| Font Awesome Pro | [View Plans](https://fontawesome.com/plans) | Yes | | ||
| Font Awesome Free | [Link](https://fontawesome.com/) | No | | ||
| Bootstrap icons | [Link](https://icons.getbootstrap.com/) | No | | ||
| Material Design icons | [Link](https://m3.material.io/styles/icons/overview) | No | |
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,50 @@ | ||
--- | ||
tags: [general, development] | ||
--- | ||
|
||
# Site Configuration | ||
|
||
This site was built using `.mdx` files vs regular `.md` files in order to utilize the benefits provided by React. | ||
|
||
In using `.mdx` syntax, I was able to create reusable React components that allowed me to simplify the code process and without requiring large amounts of customization. | ||
|
||
## Examples | ||
|
||
A few examples are included below: | ||
|
||
### Icons | ||
|
||
A simplistic React component that utilizes Font Awesome styles. | ||
|
||
```javascript | ||
<Icon variant="solid" icon="coffee" /> | ||
<Icon variant="brands" icon="facebook" size="xxl" /> | ||
``` | ||
|
||
<Icon variant="solid" icon="coffee" /> | ||
<Icon variant="brands" icon="facebook" size="xxl" /> | ||
|
||
### Buttons | ||
|
||
```javascript | ||
<Button label="Primary" link="#site" variant="primary" size="lg" /> | ||
<Button label="Secondary" link="#site" variant="secondary" size="lg" externalID="no" outline /> | ||
<Button label="Link" link="#site" variant="link" /> | ||
<Button label="Disabled" link="#site" disabled /> | ||
<Button label="Block" link="#site" block /> | ||
<Button label="Danger" link="#site" variant="danger" size="sm" outline block /> | ||
``` | ||
|
||
<Button label="Primary / Large" link="#site" variant="primary" size="lg" /> | ||
<br /> | ||
<Button label="Secondary / Small" link="#using" variant="secondary" size="sm" externalID="no" outline /> | ||
<br /> | ||
<Button label="Link" link="#site" variant="link" /> | ||
<br /> | ||
<Button label="Link w/External Icon" link="#site" variant="link" external /> | ||
<br /> | ||
<Button label="Disabled" link="#site" disabled /> | ||
<br /> | ||
<Button label="Block" link="#site" block /> | ||
<br /> | ||
<Button label="Danger / Outline" link="#site" variant="danger" size="sm" outline /> |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.