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