Skip to content

Commit

Permalink
📝 docs(readme.md): add demo gif
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinsOnuoha committed Nov 5, 2023
1 parent a695cc2 commit 052ef0b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ At the moment we're supporting links from:
- [Behance](https://behance.net)
- [Craftwork](https://craftwork.design)

![what-should-i-design-inspiration-gif](https://whatshouldidesign.space/screen4.gif)

This is of course not limited, if you would like support for design links on other platforms feel free to [open an issue](https://github.com/MartinsOnuoha/what-should-i-design/issues/new).
### Code

Expand Down Expand Up @@ -175,10 +177,23 @@ This project runs on Vue and Vite, feel free to create [issues](https://github.c

<details>
<summary>🤝 Nonprofits and Charities</summary>

| Title | Description |
|-----------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|
| Charity Fundraising Website | Develop a charity fundraising website. Design a user-friendly platform for creating fundraising campaigns, donations, and progress tracking. |
| Nonprofit Donation Platform | Design a platform for nonprofit organizations to receive donations and support their causes. Prioritize a user-friendly and secure donation process. |

</details>

<details>
<summary>🎮 Gaming</summary>

| Title | Description |
|------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Video Game Streaming Service | Create a platform for streaming video game content. Design an engaging user interface for discovering games, watching live streams, and interacting with gamers. |
| Gaming Community App | Create a community app for gamers to connect, discuss games, and find teammates. Design a fun and engaging user interface. |
| eSports Tournament Platform | Create a platform for organizing and participating in eSports tournaments. Design an interface for managing tournaments, teams, and match schedules. |

</details>

<details>
Expand Down
Binary file added public/screen4.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/AppAddUrl/AppAddUrlPreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const props = defineProps({
class="AppAddUrlPreview font--fira"
>
<div class="AppAddUrlPreview__overlay">
{{ !loading && !hasError ? 'Inspiration Added 🎉' : 'Adding URL...' }}
{{ !loading && !hasError ? 'New Link Added 🎉' : 'Adding URL...' }}
</div>
<MdiCheckCircleOutline class="absolute right-1 top-1 text-green-400 text-xl" />
<div
Expand Down
2 changes: 1 addition & 1 deletion src/components/AppCommunity/AppLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const props = defineProps({
link: { type: Object as PropType<{ url: string }>, required: true }
})
const formattedLink = computed(() => props.link.url.toLowerCase().replace('https://', ''))
const formattedLink = computed(() => props.link.url.toLowerCase().replace(/^https?:\/\//i, ''))
const icon = computed(() => {
switch (true) {
Expand Down

0 comments on commit 052ef0b

Please sign in to comment.