Team Updates

<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8" />
<metahttp-equiv="X-UA-Compatible" content="IE=edge" />
<metaname="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<linkrel="stylesheet" href="style.css" />
<script
type="module"
src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"
></script>
<script
nomodule
src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css"
/>
</head>
<bodyclass="home">
<divclass="space">
<imgsrc="https://www.un.org/sites/un2.un.org/files/covid19_response_icon.svg" class="logo" alt="logo">
</div>
<divclass="start-page" id="start">
<h1class="heading">Welcome to COVI-SAFE</h1>
</div>
<ion-col><ion-buttononclick="entering()" color="light" expand="block" id="main-entry" >Get Started</ion-button></ion-col>
<scriptsrc="index.js"></script>
</body>
</html>
view raw entry.html hosted with ❤ by GitHub
.start-page{
visibility:visible;
display:flex;
justify-content: center;
align-items: center;
}
.heading{
color:wheat;
}
.space{
min-height:40%;
}
.home{
min-height:100%;
background-color: black;
}
.logo{
height:10vh;
width:10vw;
}
view raw style.css hosted with ❤ by GitHub
S
Sri Harsha Vandanapu

The technologies we are going to use : ionic-react, capacitor we wanted to make a native application for android as well as ios and if possible desktop. we can also use react-native for accessing native apis but we want to make it simple and faster so we choose ionic-react over react native.

S
Sri Harsha Vandanapu