Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/assets/gameImages/buttons/info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/troubleshooting/01-01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/troubleshooting/01-02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/troubleshooting/01-03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/troubleshooting/01-04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/troubleshooting/01-05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/troubleshooting/alert.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 74 additions & 0 deletions public/assets/troubleshootingDB/troubleshooting.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"issues": [
{
"name": "Microphone is not working",
"body": [
{
"type": "title",
"content": "Safari, Firefox, and Edge"
},
{
"type": "text",
"content": "Oops! Our games don’t fully work on Safari, Firefox, or Edge just yet. For now, please switch to Google Chrome for the best experience."
},
{
"type": "text",
"content": "We’re working on it—thanks for hanging in there!"
},
{
"type": "title",
"content": "Chrome"
},
{
"type": "text",
"content": "Chrome likes to pick your microphone for you (how thoughtful… right?). It doesn’t ask—just grabs the default one and runs with it. Want to change it? Here’s how:"
},
{
"type": "text",
"content": "1. Go to Settings > Privacy and Security > Site Settings > Microphone"
},
{
"type": "image",
"path": "/assets/images/troubleshooting/01-01.png",
"caption": "Go to site settings"
},
{
"type": "image",
"path": "/assets/images/troubleshooting/01-02.png",
"caption": "Choose Privacy and security"
},
{
"type": "image",
"path": "/assets/images/troubleshooting/01-03.png",
"caption": "Click Site settings"
},
{
"type": "image",
"path": "/assets/images/troubleshooting/01-04.png",
"caption": "Select Microphone"
},
{
"type": "text",
"content": "2. Pick the mic you actually want to use"
},
{
"type": "image",
"path": "/assets/images/troubleshooting/01-05.png",
"caption": "Pick the mic you want to use"
},
{
"type": "title",
"content": "Still need help?"
},
{
"type": "text",
"content": "No worries — we’ve got your back! Our dev team is super responsive and loves squashing bugs like it’s their day job (because it is)."
},
{
"type": "text",
"content": "Reach out to us at connect.audemy@gmail.com We’ll get things sorted in no time!"
}
]
}
]
}
27 changes: 27 additions & 0 deletions src/pages/Footer/GamePagesFooter.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!-- GamePagesFooter.vue -->
<template>
<header class="flex items-center justify-between px-8 py-4 bg-transparent">
<!-- Something Not Working? Button -->
<div class="fixed bottom-10 left-10 z-50">
<button
@click="handleSthNotWorkingButtonClick"
class="text-black font-semibold py-2 px-4 rounded-lg flex items-center gap-2"
>
<img
src="/public/assets/gameImages/buttons/info.png"
alt="Icon"
class="w-6 h-6"
/>
<span>Something Not Working?</span>
</button>
</div>
</header>
</template>

<script setup>
defineProps({
handleSthNotWorkingButtonClick: Function,
currentAudios: Array,
});
</script>

Loading