-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(404 page): added a sample 404 route (#49)
- Loading branch information
christian-breidler
authored
Nov 25, 2021
1 parent
674dc83
commit 8c84877
Showing
3 changed files
with
31 additions
and
1 deletion.
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,21 @@ | ||
import { FSXABaseComponent } from 'fsxa-pattern-library' | ||
import { Component } from 'vue-property-decorator' | ||
|
||
@Component({ name: 'Page404' }) | ||
class Page404 extends FSXABaseComponent { | ||
render() { | ||
return ( | ||
<div class="h-full w-full flex items-center justify-center"> | ||
<div> | ||
<div class="ui-block ui-text-center ui-uppercase ui-mt-6 ui-leading-10"> | ||
404 Error | ||
</div> | ||
<div class="ui-block ui-text-center ui-text-4xl ui-font-bold ui-mb-6 ui-leading-10"> | ||
Page not found. | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
} | ||
export default Page404 |
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