update webstack
This commit is contained in:
28
src/components/custom/sections/SignUp.vue
Normal file
28
src/components/custom/sections/SignUp.vue
Normal file
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<section class="py-8 px-4">
|
||||
<div class="flex flex-wrap items-center -mx-4">
|
||||
<div class="w-full lg:w-4/6 px-4 mb-8 lg:mb-0 text-center lg:text-left">
|
||||
<h2 class="text-xl font-semibold font-heading">
|
||||
{{ signup.title }}
|
||||
</h2>
|
||||
</div>
|
||||
<div class="w-full lg:w-2/6 px-4 text-center">
|
||||
<g-link
|
||||
class="bg-gray-900 learn-button hover:bg-gray-700 text-gray-100 px-5 py-3 mr-3 font-semibold rounded shadow"
|
||||
:to="signup.link1"
|
||||
>{{ signup.button1 }}</g-link
|
||||
><g-link
|
||||
class="text-gray-900 bg-transparent hover:underline"
|
||||
:to="signup.link2"
|
||||
>{{ signup.button2 }}</g-link
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ["signup"],
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user