front-end almost done | started back-end

This commit is contained in:
Amir Mohamadi
2020-11-23 19:39:26 +03:30
parent 95149f0e72
commit 80a7abafb7
191 changed files with 60163 additions and 950 deletions
+71
View File
@@ -0,0 +1,71 @@
<template>
<div class="page tech-info--page">
<Hero :title="staticData.title"/>
<section class="s1">
<div class="container">
<div class="panel">
<div class="content gStandard">
<h2 class="first">{{staticData.t1}}</h2>
<p>{{staticData.t2}}</p>
<h2>{{staticData.t3}}</h2>
<p>{{staticData.t4}}</p>
<p>{{staticData.t5}}</p>
<h2>{{staticData.t6}}</h2>
<p>{{staticData.t7}}</p>
<img src="~/assets/img/tech-info/g-standard.png" alt="">
<h2>{{staticData.t8}}</h2>
<p>{{staticData.t9}}</p>
<img src="~/assets/img/tech-info/DIN24537.png" alt="">
<h2>{{staticData.t10}}</h2>
<p>{{staticData.t11}}</p>
<p>{{staticData.t12}}</p>
<p>{{staticData.t13}}</p>
<ul>
<li>
<p>{{staticData.t14}}</p>
</li>
<li>
<p>{{staticData.t15}}</p>
</li>
<li>
<p>{{staticData.t16}}</p>
</li>
<li>
<p>{{staticData.t17}}</p>
</li>
<li>
<p>{{staticData.t18}}</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="s2">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="title">{{staticData.t19}}</h2>
<nuxt-link :to="{name: 'lang-products',params: {lang: $route.params.lang}}" class="btn btn-primary">{{staticData.t20}}</nuxt-link>
</div>
</div>
</div>
</section>
<CustomersCommunication/>
</div>
</template>
<script>
export default {
computed: {
staticData() {
return this.$store.state.staticData.gStandard[this.$route.params.lang]
}
}
}
</script>