mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
22 lines
337 B
Vue
22 lines
337 B
Vue
<template>
|
|
<div class="Content">
|
|
<div class="container">
|
|
<h1 class="Content__Title">{{ $t('about.title') }}</h1>
|
|
<p>{{ $t('about.introduction') }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.Content
|
|
{
|
|
padding: 50px 0;
|
|
text-align: center;
|
|
}
|
|
.Content__Title
|
|
{
|
|
font-weight: 300;
|
|
padding-bottom: 30px;
|
|
}
|
|
</style>
|