Skip to content

Commit

Permalink
ui: add service page
Browse files Browse the repository at this point in the history
  • Loading branch information
arbisyarifudin committed Mar 11, 2024
1 parent 494d396 commit 8f207f0
Showing 1 changed file with 130 additions and 2 deletions.
132 changes: 130 additions & 2 deletions pages/service.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,131 @@
<template>
<div>service</div>
</template>
<div id="page" class="page service">
<div class="container">
<section class="page-header">
<div class="page-title">My Services</div>
<p class="page-description">Here are some of the services I provide.</p>
</section>

<section class="service-list">
<div class="row">
<div class="col-md-6">
<div class="service-item">
<div class="service-item__icon">
<i class="bi bi-laptop"></i>
</div>
<div class="service-item__body">
<h3 class="service-item__title">Web Development</h3>
<p class="service-item__description">I can help you build a website from scratch or
improve your existing website.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<div class="service-item__icon">
<i class="bi bi-pencil"></i>
</div>
<div class="service-item__body">
<h3 class="service-item__title">Web Design</h3>
<p class="service-item__description">I can help you design a website that suits your
needs and preferences.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<div class="service-item__icon">
<i class="bi bi-phone"></i>
</div>
<div class="service-item__body">
<h3 class="service-item__title">Mobile Development</h3>
<p class="service-item__description">I can help you build a mobile app for your business
or personal use.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<div class="service-item__icon">
<i class="bi bi-gear"></i>
</div>
<div class="service-item__body">
<h3 class="service-item__title">Custom Development</h3>
<p class="service-item__description">I can help you build a custom web or mobile
application that suits your needs.</p>
</div>
</div>
</div>
</div>
</section>

<section class="service-cta">
<div class="service-cta__title">Interested in working with me?</div>
<div class="service-cta__description">I'm currently available for freelance work. If you have a project
that you want to get started, think you need my help with something or just fancy saying hey, then
get in touch.</div>
<div class="service-cta__button">
<a href="#" class="btn btn-primary"><i class="bi bi-envelope me-2"></i> Contact Me</a>
</div>
</section>
</div>
</div>
</template>

<style lang="scss" scoped>
.service {
.service-list {
.service-item {
margin-bottom: 30px;
display: flex;
border: 1px solid rgba(141, 141, 141, 0.5);
padding: 20px 30px;
border-radius: 5px;
.service-item__icon {
font-size: 2rem;
margin-bottom: 20px;
margin-right: 30px;
}
.service-item__title {
font-size: 1.5rem;
font-weight: 500;
margin-bottom: 10px;
font-weight: 600;
}
.service-item__description {
font-size: 1rem;
color: #cccaca;
}
}
}
.service-cta {
margin-top: 50px;
padding: 30px;
background-color: rgba(141, 141, 141, 0.2);
border-radius: 5px;
.service-cta__title {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 20px;
}
.service-cta__description {
font-size: 1.25rem;
margin-bottom: 30px;
color: #cccaca;
}
.service-cta__button {
a {
font-size: 1.1rem;
padding: 10px 30px;
}
}
}
}
</style>

0 comments on commit 8f207f0

Please sign in to comment.