diff --git a/README.md b/README.md index 107b974..b48dd4f 100644 --- a/README.md +++ b/README.md @@ -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 @@ -175,10 +177,23 @@ This project runs on Vue and Vite, feel free to create [issues](https://github.c
🤝 Nonprofits and Charities + +| 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. | +
🎮 Gaming + +| 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. | +
diff --git a/public/screen4.gif b/public/screen4.gif new file mode 100644 index 0000000..9bfdd36 Binary files /dev/null and b/public/screen4.gif differ diff --git a/src/components/AppAddUrl/AppAddUrlPreview.vue b/src/components/AppAddUrl/AppAddUrlPreview.vue index 1b70141..fc91cdb 100644 --- a/src/components/AppAddUrl/AppAddUrlPreview.vue +++ b/src/components/AppAddUrl/AppAddUrlPreview.vue @@ -28,7 +28,7 @@ const props = defineProps({ class="AppAddUrlPreview font--fira" >
- {{ !loading && !hasError ? 'Inspiration Added 🎉' : 'Adding URL...' }} + {{ !loading && !hasError ? 'New Link Added 🎉' : 'Adding URL...' }}
, 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) {