-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #258 from christopher-adolphe/feature/speaker-prof…
…ile-bio feat: speakers profile bio
- Loading branch information
Showing
5 changed files
with
195 additions
and
35 deletions.
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,17 @@ | ||
[ | ||
{ | ||
"bio": "Front-end Developer based in Mauritius.", | ||
"job_title": "Senior Front-end Engineer @ Livestorm", | ||
"location": "Mauritius", | ||
"website": "https://sandeep.ramgolam.com", | ||
"github": "MrSunshyne", | ||
"twitter": "@__sun__" | ||
}, | ||
{ | ||
"bio": "Front-End Engineer | Streamer (Twitch)", | ||
"job_title": "Senior Front-end Engineer @ Livestorm", | ||
"location": "Mauritius", | ||
"github": "cedpoilly", | ||
"twitter": "" | ||
} | ||
] |
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,34 @@ | ||
<script setup lang="ts"> | ||
import type { NuxtError } from '#app' | ||
const props = defineProps({ | ||
error: Object as () => NuxtError, | ||
}) | ||
const handleError = () => clearError({ redirect: '/' }) | ||
</script> | ||
|
||
<template> | ||
<NuxtLayout name="simple"> | ||
<ContentBlock> | ||
<div class="flex flex-col justify-start items-center gap-10 mx-auto max-w-[60ch] text-center"> | ||
<BaseHeading :level="1" weight="bold"> | ||
Oops! | ||
</BaseHeading> | ||
|
||
<BaseHeading :level="3" weight="bold"> | ||
{{ error.statusCode }} - The page you are looking for doesn't exist | ||
</BaseHeading> | ||
|
||
<p>{{ error.message }}</p> | ||
|
||
<button | ||
class="mx-auto bg-verse-500 hover:bg-verse-600 transition-colors duration-200 text-md block rounded-full px-4 py-4 text-center font-medium text-white md:px-6 md:text-lg cursor-pointer" | ||
@click="handleError" | ||
> | ||
Back to Home | ||
</button> | ||
</div> | ||
</ContentBlock> | ||
</NuxtLayout> | ||
</template> |
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