-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
404 page #12
Closed
Closed
404 page #12
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1d765de
refactor: move app logo to a reusable component
yousefkadah 3d35a33
Merge remote-tracking branch 'origin/master' into auth-pages
yousefkadah 59b89d8
kunafa logo
yousefkadah 4cf924a
kunafa logo
yousefkadah 66ae5c7
revent packagr-lock.json
yousefkadah 706c488
user profile
yousefkadah 55f187b
404 error page
yousefkadah 00f6682
remove profile page init
yousefkadah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
<!-- Small logo icon , TODO: replace with logo (dynamically) --> | ||
<Icon icon="emojione:up-arrow" class="" /> | ||
<!-- System name --> | ||
<span class="text-xl font-semibold text-primary mx-2">Kunafa Vue</span> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'KunafaLogo', | ||
props: { | ||
height: { | ||
type: Number, | ||
default: 24, | ||
}, | ||
start: { | ||
type: String, | ||
default: 'primary', | ||
}, | ||
end: { | ||
type: String, | ||
default: 'secondary', | ||
}, | ||
}, | ||
} | ||
|
||
</script> |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change is from pr #8 and still pending merge. If you could remove this change from this pr for separation of concerns. |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<script setup> | ||
</script> | ||
|
||
<template> | ||
<div class="flex flex-col items-center gap-6 px-4 my-8"> | ||
<div class="fof"> | ||
<h1 class="va-h1 text-center sm:text-5xl text-4xl">{{$t('pages.errors.404.title')}}</h1> | ||
</div> | ||
|
||
<p class="text-center">{{$t('pages.errors.404.message')}}</p> | ||
|
||
<div class="flex flex-col sm:flex-row gap-4"> | ||
<RouterLink to="/" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">{{$t('pages.errors.404.go_to_home_btn')}}</RouterLink> | ||
<a href="https://github.com/kunafaPlus/kunafa-dashboard-vue/issues/new/choose" preset="secondary" target="_blank" | ||
class="bg-gray-300 hover:bg-gray-400 text-gray-800 font-bold py-2 px-4 rounded inline-flex items-center"> | ||
<Icon class="!text-gray-800" icon="entypo-social:github" width="20" height="20" /> | ||
<span class="mx-2">{{ $t('pages.errors.404.open_issue_github_btn') }}</span> | ||
</a> | ||
</div> | ||
</div> | ||
</template> | ||
<style scoped> | ||
.fof{ | ||
display: table-cell; | ||
vertical-align: middle; | ||
} | ||
|
||
.fof h1{ | ||
font-size: 50px; | ||
display: inline-block; | ||
padding-right: 12px; | ||
animation: type .5s alternate infinite; | ||
} | ||
|
||
@keyframes type{ | ||
from{box-shadow: inset -3px 0px 0px #888;} | ||
to{box-shadow: inset -3px 0px 0px transparent;} | ||
} | ||
</style> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is from pr #8 and still pending merge. If you could remove this change from this pr for separation of concerns.