-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update node and yarn, start on about us page (#293)
* temp push * upgraded yarn, node, fixed i18n build * about page progress
- Loading branch information
Showing
18 changed files
with
8,822 additions
and
8,001 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 |
---|---|---|
@@ -1 +1 @@ | ||
18.18.0 | ||
21.3.0 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,7 +1,7 @@ | ||
nodeLinker: node-modules | ||
compressionLevel: mixed | ||
|
||
enableGlobalCache: false | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-3.6.4.cjs | ||
yarnPath: .yarn/releases/yarn-4.0.2.cjs |
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import i18n from './i18n/index.js' | ||
|
||
//@ts-ignore-next-line | ||
export default defineI18nConfig(() => ({ | ||
legacy: false, | ||
locale: 'en', | ||
fallbackLocale: 'en-US', | ||
messages: i18n | ||
})) |
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 |
---|---|---|
@@ -1,13 +1,81 @@ | ||
<template> | ||
<div class="h-full"> | ||
<div class="flex flex-col md:flex-row h-full"> | ||
<h1>About us!</h1> | ||
<p>Coming soon</p> | ||
<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-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 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> |
Oops, something went wrong.