Switch to unified view

a b/web-app/client/src/components/homec.vue
1
<template>
2
    <div>
3
       <!-- <h1>this is  home</h1> -->
4
5
6
    <div class="tagline">
7
8
        <p id="tag">MyEHR: The most secure, efficient and highly insightful decentralized Electronic Healthcare System!</p> 
9
10
    </div>
11
    <div class="tagline">
12
13
        <p id="tag">Where Care Comes first</p> 
14
15
    </div>
16
17
    <div>
18
        <p style="width: 1000px; margin: 2em auto; text-align: center;">EMR is a boon to the healthcare system and its patients. It comes with support to many useful functions, making the lives of doctors and patients easy and hence achieving better care. 
19
            </p>
20
21
            
22
    </div>
23
24
    <p style="text-align: left; margin-left: 30em;">
25
        - Patient data stored on very secure blockchain
26
        
27
       </p>
28
       <p style="text-align: left;  margin-left: 30em;">
29
        - Access permission rights for patients
30
        
31
       </p>
32
       <p style="text-align: left;  margin-left: 30em;">
33
        - Insightful summary of patient data for better understanding
34
        
35
       </p>
36
       <p style="text-align: left; margin-left: 30em;">
37
        - Medical history timeline for patients
38
        
39
       </p>
40
       <p style="text-align: left; margin-left: 30em;">
41
        - Reliable admin dashboard for handling doctors and patients
42
        
43
       </p>
44
       <p style="text-align: left; margin-left: 30em;">
45
        - Details of doctors nearby for the ease of patient
46
        
47
       </p>
48
    
49
    </div>
50
</template>
51
52
<script>
53
// import uuid from 'uuid';
54
55
export default {
56
    name: "homec"
57
   
58
}
59
</script>
60
61
<style  scoped>
62
63
.tagline p {
64
    text-align: center;
65
    margin-top: 2.5em;
66
    font-size: 1.2rem;
67
    word-spacing: 0em;
68
}
69
</style>