Skip to content

Commit

Permalink
about page progress
Browse files Browse the repository at this point in the history
  • Loading branch information
ermish committed Dec 4, 2023
1 parent 4ec3328 commit 06dbbf2
Show file tree
Hide file tree
Showing 8 changed files with 101 additions and 9 deletions.
Binary file added assets/images/avatars/lashawntoyoda.jpg
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 assets/images/avatars/philipermish.jpg
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 assets/images/avatars/russellmiller.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions assets/images/heart-plus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/images/social-github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions assets/images/social-linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/images/social-x.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
82 changes: 73 additions & 9 deletions pages/about.vue
Original file line number Diff line number Diff line change
@@ -1,17 +1,81 @@
<template>
<div class="h-full">
<div class="flex flex-col md:flex-row h-full">
<div class="flex h-full flex-col w-full">
<div class="flex flex-col items-center mx-32">
<svg role="img" alt="search icon" title="search icon"
class="heart-icon w-5 h-5 mr-1 fill-primary-text-inverted">
<use xlink:href="../assets/images/heart-icon.svg#heart-icon-svg" />
class="heart-plus-icon w-24 h-24 mr-1 fill-primary-text-inverted">
<use xlink:href="../assets/images/heart-plus.svg#heart-plus-svg" />
</svg>
<h1>About us!</h1>
<p>Coming soon</p>
<h1 class="mb-12 font-bold text-4xl">About Find a Doc, Japan</h1>
<p class="text-2xl">Connecting people in Japan to the healthcare</p>
<p class="mb-12 text-2xl">services they need, in the languages they need.</p>
<p class="mb-6 text-md text-primary-text-muted">At Find a Doc, Japan, <span class="font-bold">our mission is to
foster a healthier and more inclusive society by providing free, accessible, and quality healthcare
information in multiple languages to both foreigners and medical professionals residing in
Japan.</span>We envision a Japan where everyone, regardless of nationality or language, can confidently
navigate the healthcare system, find the right doctors, and receive the care they need with ease.</p>
<p class="text-md text-primary-text-muted">As an NPO, we remain driven by the belief that a healthier and
happier society is achieved when healthcare information is made universally available. Our actions are
guided by compassion, cultural sensitivity, and the pursuit of excellence, working hand in hand with our
beneficiaries to enrich lives and contribute positively to the welfare of Japan's multicultural landscape.
By delivering healthcare information in multiple languages, we envision a Japan that embodies inclusivity,
compassion, and prosperity for all.</p>
</div>
<div id="members" class="flex flex-col items-center mx-32 my-14">
<div id="members-header" class="flex">
<div class="h-px w-32 border-currentColor/70 border inline-block self-center"></div>
<div class="text-primary/80 text-xl font-bold inline-block mx-4 whitespace-nowrap">Our Team</div>
<div class="h-px w-32 border-currentColor/70 border inline-block self-center"></div>
</div>
<div class="members-list flex flex-row" :key="index" v-for="(member, index) in members">
<div class="member flex flex-col">
<img :href="member.avatarImg" />
<div class="member-name text-xl font-bold">{{ member.name }}</div>
<div class="member-title text-md text-primary-text-muted">{{ member.title }}</div>
<div class="member-social flex flex-row">
<a :href="member.linkedInUrl" target="_blank" rel="noopener noreferrer">
<svg role="img" alt="linkedin icon" title="linkedin icon"
class="social-icon w-12 h-12 mr-1 fill-primary-text-muted">
<use xlink:href="../assets/images/social-linkedin.svg#social-linkedin-svg" />
</svg>
</a>
<a :href="member.githubUrl" target="_blank" rel="noopener noreferrer">
<svg role="img" alt="github icon" title="github icon"
class="social-icon w-12 h-12 mr-1 fill-primary-text-muted">
<use xlink:href="../assets/images/social-github.svg#social-github-svg" />
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</template>

<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({})
<script setup lang="ts">
import { ref } from 'vue'
const members = ref([
{
avatarImg: '../assets/images/avatars/lashawntoyoda.jpg',
name: 'LaShawn Toyoda',
title: 'Founder & Executive Director',
linkedInUrl: 'https://www.linkedin.com/in/lashawn-toyoda/',
githubUrl: 'https://github.com/theyokohamalife/'
},
{
avatarImg: '../assets/images/avatars/philipermish.jpg',
name: 'Philip Ermish',
title: 'Tech Lead',
linkedInUrl: 'https://www.linkedin.com/in/philipermish',
githubUrl: 'https://github.com/ermish'
},
{
avatarImg: '../assets/images/avatars/russellmiller.jpg',
name: 'Russell Miller',
title: 'Healthcare Content Lead',
linkedInUrl: 'https://www.linkedin.com/in/russellmiller',
githubUrl: 'https://github.com/ermish'
},
])
</script>

0 comments on commit 06dbbf2

Please sign in to comment.