Skip to content

Commit 8a9af8f

Browse files
committed
ADD: Some dummy content
1 parent 09c0c78 commit 8a9af8f

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

src/views/About.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
<template>
2-
<div>About</div>
2+
<div class="p-5 mb-4 bg-light rounded-3">
3+
<div class="container-fluid py-5">
4+
<h1 class="display-5 fw-bold">About ternary operator</h1>
5+
<p class="col-md-8 fs-4">The conditional (ternary) operator is the only JavaScript operator that takes three operands: a condition followed by a question mark (?), then an expression to execute if the condition is truthy followed by a colon (:), and finally the expression to execute if the condition is falsy. This operator is frequently used as an alternative to an if...else statement.</p>
6+
</div>
7+
</div>
38
</template>

src/views/Contacts.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
<template>
2-
<div>Contacts</div>
2+
<div class="p-5 mb-4 bg-light rounded-3">
3+
<div class="container-fluid py-5">
4+
<h1 class="display-5 fw-bold">Contact Picker API</h1>
5+
<p class="col-md-8 fs-4">Access to contacts has long been a feature available within native applications. The Contacts Picker API brings that functionality to web applications.</p>
6+
<p class="col-md-8 fs-4">Use cases include selecting contacts to message via an email or chat application, selecting a contacts phone number for use with voice over IP (VOIP), or for discovering contacts who have already joined a social platform. User agents can also offer a consistent experience with other applications on a users device.</p>
7+
</div>
8+
</div>
39
</template>

0 commit comments

Comments
 (0)