development_new changes
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<template>
|
||||
<div class="lg:my-20 flex flex-col mt-5 p-auto">
|
||||
<h2 class="flex py-2 mx-auto uppercase font-bold text-5xl">
|
||||
<h2 class="flex py-2 mx-auto uppercase font-bold lg:text-6xl">
|
||||
{{ team.title }}
|
||||
</h2>
|
||||
<div
|
||||
class="max-w-x2 text-xl text-center mb-8 mx-auto leading-relaxed"
|
||||
class="lg:max-w-6xl text-2xl text-center mb-8 mx-auto leading-relaxed"
|
||||
v-html="team.content"
|
||||
></div>
|
||||
<div class="flex overflow-x-scroll pb-10 scrollable">
|
||||
|
||||
@@ -1,30 +1,28 @@
|
||||
<template>
|
||||
<div class="flex flex-wrap -mx-auto">
|
||||
<div class="flex flex-wrap -mx-auto lg:my-20">
|
||||
<div class="text-center mx-auto my-4">
|
||||
<h1
|
||||
<h2
|
||||
class="
|
||||
text-md
|
||||
lg:text-5xl
|
||||
text-gray-900
|
||||
lg:text-6xl
|
||||
font-bold
|
||||
sm:text-9xl
|
||||
leading-tight
|
||||
lg:max-w-2xl
|
||||
lg:max-w-3xl
|
||||
"
|
||||
>
|
||||
{{ main.title }}
|
||||
</h1>
|
||||
</h2>
|
||||
<div
|
||||
class="my-5 max-w-2xl text-lg lg:text-xl mx-auto text-gray-900 sm:mt-4"
|
||||
class="my-5 max-w-2xl text-lg lg:text-2xl mx-auto text-gray-900 sm:mt-4"
|
||||
v-html="main.content"
|
||||
></div>
|
||||
</div>
|
||||
<div class="flex flex-col my-1 lg:px-4 lg:w-1/2 overflow-hidden">
|
||||
<g-image :src="mainItem.image" class="w-3/4 mx-auto" />
|
||||
<div class="flex flex-col my-1 lg:w-1/2 overflow-hidden">
|
||||
<g-image :src="mainItem.image" class="w-1/2 mx-auto" />
|
||||
<div class="flex-1 bg-white p-6 flex flex-col justify-between">
|
||||
<div class="flex-1">
|
||||
<div
|
||||
class="mt-3 text-lg lg:text-xl leading-tight text-gray-800"
|
||||
class="mt-3 lg:text-xl max-w-xl mx-auto leading-tight text-gray-800 text-center"
|
||||
v-html="mainItem.content"
|
||||
></div>
|
||||
</div>
|
||||
@@ -32,12 +30,12 @@
|
||||
</div>
|
||||
|
||||
<!-- Column Content -->
|
||||
<div class="flex flex-col my-1 px-4 lg:w-1/2 overflow-hidden">
|
||||
<div class="flex my-10" v-for="info in marketInfo" :key="info.id">
|
||||
<div class="flex flex-col my-1 lg:w-1/2 overflow-hidden lg:px-20">
|
||||
<div class="flex my-4 px-2" v-for="info in marketInfo" :key="info.id">
|
||||
<div class="flex-shrink-0">
|
||||
<g-image :src="info.image" class="h-28 w-28" />
|
||||
<g-image :src="info.image" class="h-32 w-32" />
|
||||
</div>
|
||||
<div class="ml-4">
|
||||
<div class="lg:mx-20">
|
||||
<div
|
||||
class="mt-5 lg:mx-10 text-xl leading-6 text-gray-900"
|
||||
v-html="info.content"
|
||||
|
||||
@@ -3,17 +3,17 @@
|
||||
<div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:py-24 lg:px-8">
|
||||
<div class="grid grid-cols-1 gap-16">
|
||||
<div class="lg:grid lg:grid-cols-3 lg:gap-8">
|
||||
<h2 class="text-4xl mb-6 leading-tight font-semibold font-heading">
|
||||
<h2 class="lg:text-6xl mb-6 leading-tight font-semibold font-heading">
|
||||
E-mail us
|
||||
</h2>
|
||||
<div
|
||||
class="mt-8 grid grid-cols-1 gap-12 sm:grid-cols-2 sm:gap-x-8 sm:gap-y-12 lg:mt-0 lg:col-span-2"
|
||||
>
|
||||
<div v-for="(contact, idx) in contacts" :key="idx">
|
||||
<h4 class="text-lg leading-6 font-medium text-gray-700">
|
||||
<h4 class="text-2xl leading-6 font-medium text-gray-900">
|
||||
{{ contact.title }}
|
||||
</h4>
|
||||
<div class="mt-2 text-base leading-6 text-gray-500">
|
||||
<div class="mt-2 text-xl leading-6 text-gray-500">
|
||||
<div>
|
||||
{{ contact.mail }}
|
||||
</div>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<g-image class="lg:w-3/4 mx-auto" :src="roadmap.image" />
|
||||
<div
|
||||
v-html="roadmap.content"
|
||||
class="mt-10 mb-8 lg:text-xl text-gray-900"
|
||||
class="mt-10 mb-8 lg:text-2xl text-gray-900"
|
||||
></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -15,15 +15,15 @@
|
||||
text-center
|
||||
"
|
||||
>
|
||||
<h1
|
||||
<h2
|
||||
class="
|
||||
text-5xl uppercase mb-0 leading-tight font-semibold font-heading
|
||||
lg:text-6xl uppercase mb-0 leading-tight font-semibold font-heading
|
||||
"
|
||||
>
|
||||
{{ subscribe.title }}
|
||||
</h1>
|
||||
</h2>
|
||||
<div
|
||||
class="my-8 lg:text-xl"
|
||||
class="my-8 lg:text-2xl"
|
||||
v-html="subscribe.content"
|
||||
></div>
|
||||
<div class="flex w-full md:justify-start justify-center items-end">
|
||||
|
||||
@@ -28,8 +28,7 @@
|
||||
font-bold
|
||||
text-gray-900
|
||||
sm:leading-none
|
||||
lg:text-5xl
|
||||
max-w-2xl
|
||||
lg:text-6xl
|
||||
"
|
||||
>
|
||||
{{ tft.title }}
|
||||
@@ -40,8 +39,7 @@
|
||||
class="
|
||||
mt-3
|
||||
max-w-md
|
||||
text-lg text-gray-900
|
||||
sm:text-xl
|
||||
text-2xl text-gray-900
|
||||
md:mt-5
|
||||
md:max-w-xl
|
||||
"
|
||||
@@ -50,6 +48,7 @@
|
||||
<div class="mt-10 sm:flex sm:justify-center lg:justify-start">
|
||||
<a
|
||||
:href="tft.link"
|
||||
target="_blank"
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
|
||||
@@ -8,13 +8,13 @@
|
||||
>
|
||||
<!-- about-us -->
|
||||
<div
|
||||
class="w-full max-w-2xl mx-auto lg:py-20"
|
||||
class="w-full mx-auto lg:py-20"
|
||||
v-if="id == 'about-us' && !textOnly && !lastCta"
|
||||
>
|
||||
<h2
|
||||
v-if="cta.title"
|
||||
class="
|
||||
lg:text-5xl
|
||||
lg:text-6xl
|
||||
text-center
|
||||
uppercase
|
||||
mb-2
|
||||
@@ -26,9 +26,9 @@
|
||||
</h2>
|
||||
<div
|
||||
v-html="cta.content"
|
||||
class="mt-6 mb-8 lg:text-xl text-gray-800"
|
||||
class="mt-6 mb-8 lg:text-2xl text-gray-800"
|
||||
></div>
|
||||
<g-image :src="cta.image" class="my-10" />
|
||||
<g-image :src="cta.image" class="my-10 mx-auto" />
|
||||
|
||||
<!-- <div class="mt-8 tracking-wide leading-loose" v-if="cta.video_button">
|
||||
<a
|
||||
@@ -93,13 +93,13 @@
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full max-w-2xl mx-auto py-12"
|
||||
class="w-full max-w-3xl mx-auto py-12"
|
||||
v-else-if="id == 'about-us' && textOnly"
|
||||
>
|
||||
<h2
|
||||
v-if="cta.title"
|
||||
class="
|
||||
lg:text-5xl
|
||||
lg:text-6xl
|
||||
text-center
|
||||
uppercase
|
||||
mb-2
|
||||
@@ -111,7 +111,7 @@
|
||||
</h2>
|
||||
<div
|
||||
v-html="cta.content"
|
||||
class="mt-6 mb-8 lg:text-xl text-gray-800"
|
||||
class="mt-6 mb-8 lg:text-2xl text-gray-800"
|
||||
></div>
|
||||
</div>
|
||||
|
||||
@@ -122,7 +122,7 @@
|
||||
<h2
|
||||
v-if="cta.title"
|
||||
class="
|
||||
lg:text-5xl
|
||||
lg:text-6xl
|
||||
text-center
|
||||
uppercase
|
||||
mb-2
|
||||
@@ -135,7 +135,7 @@
|
||||
<h2
|
||||
v-if="cta.subtitle"
|
||||
class="
|
||||
lg:text-5xl
|
||||
lg:text-6xl
|
||||
text-center
|
||||
uppercase
|
||||
mb-2
|
||||
@@ -147,7 +147,7 @@
|
||||
</h2>
|
||||
<div
|
||||
v-html="cta.content"
|
||||
class="mt-6 mb-8 lg:text-xl text-gray-800"
|
||||
class="mt-6 mb-8 lg:text-2xl text-gray-800"
|
||||
></div>
|
||||
<a
|
||||
class="
|
||||
@@ -199,14 +199,14 @@
|
||||
>
|
||||
<h2
|
||||
v-if="cta.title"
|
||||
class="text-5xl uppercase mb-0 leading-tight font-semibold font-heading"
|
||||
class="lg:text-6xl uppercase mb-0 leading-tight font-semibold font-heading"
|
||||
>
|
||||
{{ cta.title }}
|
||||
</h2>
|
||||
|
||||
<h2
|
||||
v-if="cta.subtitle"
|
||||
class="text-5xl uppercase mt-0 leading-tight font-semibold font-heading"
|
||||
class="lg:text-6xl uppercase mt-0 leading-tight font-semibold font-heading"
|
||||
>
|
||||
{{ cta.subtitle }}
|
||||
</h2>
|
||||
@@ -238,7 +238,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -259,7 +259,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -279,7 +279,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -300,7 +300,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -320,7 +320,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -341,7 +341,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -361,7 +361,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -382,7 +382,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -403,7 +403,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -424,7 +424,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -445,7 +445,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -459,14 +459,14 @@
|
||||
"
|
||||
target="_blank"
|
||||
v-if="cta.button6 && cta.link6.includes('http')"
|
||||
:href="cta.link4"
|
||||
:href="cta.link6"
|
||||
>{{ cta.button6 }}</a
|
||||
>
|
||||
<a
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -486,17 +486,17 @@
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full max-w-7xl mx-auto mt-10 px-16"
|
||||
class="w-full max-w-7xl mx-auto mt-10 px-2"
|
||||
v-else-if="id == 'home' && lastCta"
|
||||
>
|
||||
<g-image :src="cta.image" />
|
||||
<g-image class="mx-auto" :src="cta.image" />
|
||||
<h2
|
||||
v-if="cta.title"
|
||||
class="text-5xl mb-2 uppercase leading-tight font-semibold font-heading"
|
||||
class="lg:text-6xl mb-2 uppercase leading-tight font-semibold font-heading"
|
||||
>
|
||||
{{ cta.title }}
|
||||
</h2>
|
||||
<div v-html="cta.content" class="mt-6 mb-8 text-gray-800"></div>
|
||||
<div v-html="cta.content" class="mt-6 mb-8 mx-auto text-2xl text-gray-800"></div>
|
||||
<div class="mt-8 tracking-wide leading-loose" v-if="cta.video_button">
|
||||
<a
|
||||
@click="toggleModal"
|
||||
@@ -504,7 +504,7 @@
|
||||
inline-block
|
||||
cursor-pointer
|
||||
bg-blue-900
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-blue-800
|
||||
text-gray-100
|
||||
@@ -522,7 +522,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -543,7 +543,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -563,7 +563,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -584,7 +584,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -604,7 +604,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -625,7 +625,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -645,7 +645,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -666,7 +666,7 @@
|
||||
class="
|
||||
inline-block
|
||||
bg-white
|
||||
text-sm
|
||||
text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
bo
|
||||
@@ -685,12 +685,12 @@
|
||||
</div>
|
||||
|
||||
<!-- grid -->
|
||||
<div class="w-full max-w-3xl mx-auto py-12" v-else-if="id == 'grid'">
|
||||
<div id="zero_os" class="w-full max-w-3xl mx-auto py-12" v-else-if="id == 'grid'">
|
||||
<g-image :src="cta.image" class="mx-auto lg:w-1/3 my-10" />
|
||||
<h2
|
||||
v-if="cta.title"
|
||||
class="
|
||||
lg:text-5xl
|
||||
lg:text-6xl
|
||||
text-center
|
||||
uppercase
|
||||
my-2
|
||||
@@ -702,7 +702,7 @@
|
||||
</h2>
|
||||
<div
|
||||
v-html="cta.content"
|
||||
class="mt-6 mb-8 lg:text-xl text-gray-800"
|
||||
class="mt-6 mb-8 lg:text-2xl text-gray-800"
|
||||
></div>
|
||||
<a
|
||||
class="
|
||||
@@ -787,13 +787,13 @@
|
||||
|
||||
<!-- token -->
|
||||
<div
|
||||
class="w-full max-w-6xl mx-auto py-12"
|
||||
class="w-full max-w-6xl mx-auto lg:my-20"
|
||||
v-else-if="id == 'token' && !lastCta"
|
||||
>
|
||||
<h2
|
||||
v-if="cta.title"
|
||||
class="
|
||||
lg:text-5xl
|
||||
lg:text-6xl
|
||||
max-w-3xl
|
||||
mx-auto
|
||||
text-center
|
||||
@@ -807,7 +807,7 @@
|
||||
</h2>
|
||||
<div
|
||||
v-html="cta.content"
|
||||
class="mt-6 mb-8 max-w-3xl mx-auto lg:text-xl text-gray-800"
|
||||
class="mt-6 mb-8 max-w-3xl mx-auto lg:text-2xl text-gray-800"
|
||||
></div>
|
||||
<g-image :src="cta.image" class="mx-auto w-full my-10" />
|
||||
<a
|
||||
@@ -857,7 +857,7 @@
|
||||
class="
|
||||
max-w-2xl
|
||||
mx-auto
|
||||
lg:text-5xl
|
||||
lg:text-6xl
|
||||
text-center
|
||||
uppercase
|
||||
mb-2
|
||||
@@ -869,7 +869,7 @@
|
||||
</h2>
|
||||
<div
|
||||
v-html="cta.content"
|
||||
class="mt-6 mb-8 lg:text-xl text-gray-800"
|
||||
class="mt-6 mb-8 lg:text-2xl text-gray-800"
|
||||
></div>
|
||||
|
||||
<a
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div>
|
||||
<div class="header section banner" v-if="header">
|
||||
<div class="center">
|
||||
<h1 class="text-8xl">
|
||||
<h1 class="text-8xl uppercase">
|
||||
<strong>{{ title }}</strong>
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<section class="py-24 px-4 text-center" v-else-if="id == 'token'">
|
||||
<h2
|
||||
class="
|
||||
text-5xl
|
||||
lg:text-6xl
|
||||
mx-auto
|
||||
leading-tight
|
||||
mb-6
|
||||
@@ -327,7 +327,7 @@
|
||||
>
|
||||
{{ main.title }}
|
||||
</h2>
|
||||
<div class="flex flex-wrap items-center -mx-4 mb-6">
|
||||
<div class="flex flex-wrap items-center -mx-4 lg:mb-20">
|
||||
<div
|
||||
v-for="(feature, index) in features"
|
||||
:key="index"
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
<template>
|
||||
<section class="py-12 px-4 text-center">
|
||||
<div class="w-full mx-auto">
|
||||
<div class="w-full mx-auto lg:max-w-6xl">
|
||||
<span class="text-sm font-semibold">{{ header.title }}</span>
|
||||
<h2 class="text-4xl mt-2 mb-6 leading-tight font-heading">
|
||||
<h2 class="lg:text-5xl mt-2 uppercase mb-6 leading-tight font-heading">
|
||||
{{ header.subtitle }}
|
||||
</h2>
|
||||
<div
|
||||
v-if="header.content"
|
||||
v-html="header.content"
|
||||
class="post-content mb-8 text-gray-700 leading-relaxed"
|
||||
class="post-content mb-8 text-xl leading-relaxed"
|
||||
></div>
|
||||
<div>
|
||||
<g-link
|
||||
class="
|
||||
inline-block
|
||||
bg-green-500
|
||||
text-sm text-white
|
||||
text-lg
|
||||
text-white
|
||||
learn-button
|
||||
hover:bg-green-600
|
||||
px-8
|
||||
py-2
|
||||
mr-2
|
||||
my-0
|
||||
rounded
|
||||
hover:bg-green-400
|
||||
bo
|
||||
px-12
|
||||
py-1
|
||||
mr-5
|
||||
mb-4
|
||||
border-2
|
||||
shadow
|
||||
rounded-full
|
||||
active--exact active
|
||||
border-black
|
||||
"
|
||||
v-if="header.btn1"
|
||||
:to="header.link1"
|
||||
|
||||
Reference in New Issue
Block a user