22 lines
371 B
Vue
22 lines
371 B
Vue
<script setup>
|
|
import '@vendor/js/bootstrap';
|
|
</script>
|
|
<template>
|
|
<section class="section-py first-section-pt our-story-header heading">
|
|
<div class="col-lg-6 col-xs-12 ">
|
|
<h1 class="pl-6 heading-text">
|
|
About HGH
|
|
</h1>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
|
|
<style>
|
|
@media(max-width:567px) {
|
|
.heading-text {
|
|
font-size: 37px;
|
|
}
|
|
}
|
|
</style>
|