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
<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> |
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
.class { | |
background-image: url("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
<figure> | |
<img class="image" src="image_path/image.svg" alt="Image"> | |
</figure> |
NewerOlder