-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created HowTo route to shorten home page. Added about/tutorial video to homepage. Fixed up word count stuff to my liking.
- Loading branch information
1 parent
16435ff
commit 3eb8ac3
Showing
10 changed files
with
268 additions
and
159 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
declare module "*.png"; | ||
declare module "*.jpeg"; | ||
declare module "*.wav"; | ||
declare module "*.mp4"; |
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 |
---|---|---|
|
@@ -18,25 +18,42 @@ const LinkList = () => { | |
</a> | ||
</li> | ||
<li> | ||
<a href="#/about" className={STYLES.NAV_ANCHOR}> | ||
About | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://ca.linkedin.com/in/parrottjrs"> | ||
<Linkedin className={STYLES.NAV_ANCHOR} strokeWidth={1} /> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/parrottjrs"> | ||
<Github className={STYLES.NAV_ANCHOR} strokeWidth={1} /> | ||
<a href="#/how-to" className={STYLES.NAV_ANCHOR}> | ||
How to | ||
</a> | ||
</li> | ||
<li> | ||
<a href="mailto:[email protected]"> | ||
<Mail className={STYLES.NAV_ANCHOR} strokeWidth={1} /> | ||
<a href="#/about" className={STYLES.NAV_ANCHOR}> | ||
About | ||
</a> | ||
</li> | ||
|
||
<div className="flex flex-col"> | ||
<li> | ||
<a | ||
href="https://ca.linkedin.com/in/parrottjrs" | ||
aria-label="Jordan Parrott on LinkedIn" | ||
> | ||
<Linkedin className={STYLES.NAV_SOCIAL} strokeWidth={1} /> | ||
</a> | ||
</li> | ||
<li> | ||
<a | ||
href="https://github.com/parrottjrs" | ||
aria-label="Jordan Parrott on Github" | ||
> | ||
<Github className={STYLES.NAV_SOCIAL} strokeWidth={1} /> | ||
</a> | ||
</li> | ||
<li> | ||
<a | ||
href="mailto:[email protected]" | ||
aria-label="E-mail Jordan Parrott" | ||
> | ||
<Mail className={STYLES.NAV_SOCIAL} strokeWidth={1} /> | ||
</a> | ||
</li> | ||
</div> | ||
</ul> | ||
); | ||
}; | ||
|
@@ -67,6 +84,12 @@ const Dropdown = () => { | |
</a> | ||
</DropdownMenu.Item> | ||
<DropdownMenu.Separator className={STYLES.DROPDOWN_NAV_SPACER} /> | ||
<DropdownMenu.Item> | ||
<a href="#/how-to" className={STYLES.DROPDOWN_NAV_ANCHOR}> | ||
How to | ||
</a> | ||
</DropdownMenu.Item> | ||
<DropdownMenu.Separator className={STYLES.DROPDOWN_NAV_SPACER} /> | ||
<DropdownMenu.Item> | ||
<a href="#/about" className={STYLES.DROPDOWN_NAV_ANCHOR}> | ||
About | ||
|
@@ -75,23 +98,32 @@ const Dropdown = () => { | |
<DropdownMenu.Separator className={STYLES.DROPDOWN_NAV_SPACER} /> | ||
<div className="flex flex-row justify-left pt-1 pb-2 pl-3"> | ||
<DropdownMenu.Item> | ||
<a href="https://ca.linkedin.com/in/parrottjrs"> | ||
<a | ||
href="https://ca.linkedin.com/in/parrottjrs" | ||
aria-label="Jordan Parrott on LinkedIn" | ||
> | ||
className={STYLES.DROPDOWN_NAV_SOCIALS} | ||
strokeWidth={1} | ||
/> | ||
</a> | ||
</DropdownMenu.Item> | ||
<DropdownMenu.Item> | ||
<a href="https://github.com/parrottjrs"> | ||
<a | ||
href="https://github.com/parrottjrs" | ||
aria-label="Jordan Parrott on Github" | ||
> | ||
<Github | ||
className={STYLES.DROPDOWN_NAV_SOCIALS} | ||
strokeWidth={1} | ||
/> | ||
</a> | ||
</DropdownMenu.Item> | ||
<DropdownMenu.Item> | ||
<a href="mailto:[email protected]"> | ||
<a | ||
href="mailto:[email protected]" | ||
aria-label="Email Jordan Parrott" | ||
> | ||
className={STYLES.DROPDOWN_NAV_SOCIALS} | ||
strokeWidth={1} | ||
|
@@ -108,7 +140,7 @@ const Dropdown = () => { | |
|
||
export default function Navbar() { | ||
return ( | ||
<header className="z-10 self-center mb-5 md:mb-10 md:h-20 bg-gray-800/95 sticky top-0 opacity-95 flex flex-row items-center justify-between p-4 border-gray-200 bg-gray-50 dark:bg-gray-800/95 dark:border-gray-700"> | ||
<header className="z-10 self-center mb-5 h-24 md:mb-10 md:h-30 bg-gray-800/95 sticky top-0 opacity-95 flex flex-row items-center justify-between p-4 border-gray-200 bg-gray-50 dark:bg-gray-800/95 dark:border-gray-700"> | ||
<img src={words} alt="Think-Write" className="h-6 md:h-12 md:px-7" /> | ||
<div className="flex items-center"> | ||
<nav | ||
|
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
Binary file not shown.
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.