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
├── app/ | |
| ├── (auth)/ | |
| | | login/ | |
| | | ├── page.tsx | |
| | | register/ | |
| | | ├── page.tsx | |
| | ├── layout.tsx // Auth level layout | |
| | ├── error.tsx // Auth level error handling page |
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
├── app/ | |
| ├── about/ | |
| | ├── page.tsx | |
| ├── page.tsx | |
| ├── contact/ | |
| | ├── layout.tsx // Contact level layout | |
| | ├── error.tsx // Contact level error handling | |
| | ├── page.tsx | |
| ├── dashboard/ | |
| | ├── page.tsx |
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
├── app/ | |
| ├── about/ | |
| | ├── page.tsx | |
| ├── page.tsx | |
| ├── contact/ | |
| | ├── page.tsx | |
| ├── dashboard/ | |
| | ├── page.tsx |
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
├── pages/ | |
| ├── about.tsx | |
| ├── contact.tsx | |
| └── dashboard.tsx |
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
alias rbrew="arch -x86_64 brew" | |
alias ibrew='arch --x86_64 /usr/local/Homebrew/bin/brew' |
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
if [ "$(uname -p)" = "intel" ]; then | |
echo "Running in intel arch (Rosetta)" | |
eval "$(/usr/local/homebrew/bin/brew shellenv)" | |
alias brew='/usr/local/homebrew/bin/brew' | |
else | |
echo "Running in ARM arch" | |
eval "$(/opt/homebrew/bin/brew shellenv)" | |
alias brew='/opt/homebrew/bin/brew' | |
fi |
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
<picture> | |
<source srcset="image_path/image-small.png" media="(max-width: some_breakpoint)" alt="Image"> | |
<source srcset="image_path/image-medium.png" media="(max-width: some_breakpoint)" alt="Image"> | |
<source srcset="image_path/image-large.png" media="(min-width: some_breakpoint)" alt="Image"> | |
<img class="image" src="image_path/image.png" alt="Image"> | |
</picture> |
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
<svg width="18" height="20" viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg"> | |
<path d="M13.3224 4.36529L12.2208 3.07125L12.6139 4.72562C12.618" fill="#FF5722"/> | |
</svg> |
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
<embed src="image_path/image.svg"/> |
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
<iframe src="image_path/image.svg"></iframe> |
NewerOlder