home page update

This commit is contained in:
Vilnite
2021-02-09 21:16:36 +02:00
parent cc631da16c
commit 1c1edfae12
15 changed files with 31 additions and 42 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

View File

@@ -21,4 +21,4 @@ partners:
logo: https://tailwindui.com/img/logos/v1/statamic-logo.svg logo: https://tailwindui.com/img/logos/v1/statamic-logo.svg
--- ---
Trusted by over 5 very average small businesses Some text can go here

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

View File

@@ -1,10 +1,11 @@
--- ---
id: home id: home
cards: [home, home2, home3, home4, home5, home6] header_title: BIG TITLE
header_title: BE THE INTERNET header_image: ./image_name.png
header_image: ./header.png header_excerpt: Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
header_excerpt: We're going back to the original vision of the Internet - By the people, for the people. With industry-transforming technology. And we are already live today. button: Button
button: Learn more link: '' #link for button
link: /why logos: [logo1, logo2, logo3, logo4]
inTheNews: in_the_news inTheNews: in_the_news
signup: home_signup
--- ---

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -1,6 +1,4 @@
--- ---
id: logo1 id: logo1
image: ./logo.png image: ./logo.png
--- ---

View File

@@ -1,6 +1,4 @@
--- ---
id: logo2 id: logo2
image: ./dash.png image: ./dash.png
--- ---

View File

@@ -1,6 +1,4 @@
--- ---
id: logo3 id: logo3
image: ./skale.png image: ./skale.png
--- ---

View File

@@ -1,6 +1,4 @@
--- ---
id: logo4 id: logo4
image: ./vlinder.png image: ./vlinder.png
--- ---

View File

@@ -1,6 +1,4 @@
--- ---
id: logo5 id: logo5
image: ./presearch_logo.png image: ./presearch_logo.png
--- ---

View File

@@ -1,6 +1,4 @@
--- ---
id: logo6 id: logo6
image: ./presearch_logo.png image: ./presearch_logo.png
--- ---

View File

@@ -1,17 +0,0 @@
---
id: one
title: One
---
# Welcome to Markdown
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Why do we use it?
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
<br>
Why do we use it?
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).

View File

@@ -1,6 +1,5 @@
<template> <template>
<Layout :hideHeader="true" :disableScroll="true"> <Layout :hideHeader="true" :disableScroll="true">
<div class="container sm:pxi-0 mx-auto overflow-x-hidden py-5">
<Header <Header
:title="$page.markdownPage.header_title" :title="$page.markdownPage.header_title"
:image="$page.markdownPage.header_image" :image="$page.markdownPage.header_image"
@@ -10,11 +9,20 @@
:link="$page.markdownPage.link" :link="$page.markdownPage.link"
/> />
<logoShowcase
v-if="$page.markdownPage.logos.length > 0"
:logos="$page.markdownPage.logos"
/>
<InTheNews <InTheNews
v-if="$page.markdownPage.inTheNews" v-if="$page.markdownPage.inTheNews"
:news="$page.markdownPage.inTheNews" :news="$page.markdownPage.inTheNews"
/> />
</div>
<SignUp
v-if="$page.markdownPage.signup"
:signup="$page.markdownPage.signup"
/>
</Layout> </Layout>
</template> </template>
@@ -29,6 +37,10 @@
header_altImg header_altImg
button button
link link
logos{
id
image
}
inTheNews { inTheNews {
id id
excerpt excerpt
@@ -37,6 +49,14 @@
logo logo
} }
} }
signup{
id
title
button1
link1
button2
link2
}
} }
} }

View File

@@ -63,18 +63,15 @@
:logos="$page.markdownPage.logos" :logos="$page.markdownPage.logos"
/> />
<template>
<ClientOnly>
<CallToAction <CallToAction
v-if="$page.markdownPage.cta" v-if="$page.markdownPage.cta"
:cta="$page.markdownPage.cta" :cta="$page.markdownPage.cta"
/> />
<SignUp <SignUp
v-if="$page.markdownPage.signup" v-if="$page.markdownPage.signup"
:signup="$page.markdownPage.signup" :signup="$page.markdownPage.signup"
/> />
</ClientOnly>
</template>
<template> <template>
<ClientOnly> <ClientOnly>