-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
101 additions
and
9 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -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> |