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) {