1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-08-09 23:45:25 +02:00

Renamed landing to greeting

This commit is contained in:
slaveeks 2022-09-12 12:43:04 +03:00
parent 206aaaee9b
commit abe658869f
3 changed files with 6 additions and 6 deletions

View file

@ -11,11 +11,11 @@
</head>
<script>
</script>
<body class="landing-body">
<body class="greeting-body">
{% include "components/header.twig" %}
<div class="landing-content">
<div class="greeting-content">
{{ svg('frog') }}
<p class="landing-content__message">
<p class="greeting-content__message">
Its time to create the first page!
</p>
{% include 'components/button.twig' with {label: 'Add page', icon: 'plus', size: 'small', url: '/page/new'} %}

View file

@ -1,11 +1,11 @@
.landing-body {
.greeting-body {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
.landing-content {
.greeting-content {
display: flex;
flex-direction: column;
justify-content: center;

View file

@ -6,7 +6,7 @@
@import './components/header.pcss';
@import './components/writing.pcss';
@import './components/page.pcss';
@import './components/landing.pcss';
@import './components/greeting.pcss';
@import './components/auth.pcss';
@import './components/error.pcss';
@import './components/button.pcss';