Work in progress

This commit is contained in:
Julien Nahum
2023-12-09 15:47:03 +01:00
parent f970557b76
commit 1f853e8178
315 changed files with 34058 additions and 25 deletions

View File

@@ -20,7 +20,7 @@
'Build a simple form in minutes.',
'No coding needed.'
],
img: 'img/pages/welcome/step-1.jpg'
img: '/img/pages/welcome/step-1.jpg'
},
{
title: 'Share',
@@ -29,7 +29,7 @@
'Share the link to your form',
'Embed the form on your website'
],
img: 'img/pages/welcome/step-2.jpg'
img: '/img/pages/welcome/step-2.jpg'
},
{
title: 'Get Results',
@@ -39,7 +39,7 @@
'Easily export submissions as CSV',
'Views & Submissions Analytics'
],
img: 'img/pages/welcome/step-3.jpg'
img: '/img/pages/welcome/step-3.jpg'
}
]" :key="step.title">
<div class="w-full md:w-1/2 lg:w-5/12" :class="{'md:pl-4':index%2==1, 'md:pr-4':index%2==0}">
@@ -85,7 +85,7 @@
<div class="w-full md:w-1/2 lg:w-7/12 flex items-center justify-center relative w-full"
:class="{'md:pr-8':index%2==1, 'md:pl-8':index%2==0}">
<img loading="lazy" class="block rounded-2xl w-full"
:src="asset(step.img)" alt="cover-product">
:src="step.img" alt="cover-product">
</div>
</div>

View File

@@ -1,19 +0,0 @@
export const fixedClasses = {
input: 'rounded-lg border-transparent flex-1 appearance-none border border-gray-300 w-full py-2 px-4 bg-white text-gray-700 dark:bg-notion-dark-light dark:text-gray-300 dark:placeholder-gray-500 placeholder-gray-400 shadow-sm text-base focus:outline-none focus:ring-1 focus:ring-opacity-100 focus:border-transparent focus:ring-2 ring-blue-500',
navigator: 'flex',
navigatorViewButton: 'flex items-center',
navigatorViewButtonIcon: 'flex-shrink-0 h-5 w-5',
navigatorViewButtonBackIcon: 'flex-shrink-0 h-5 w-5',
navigatorLabel: 'flex items-center py-1',
navigatorPrevButtonIcon: 'h-6 w-6 inline-flex',
navigatorNextButtonIcon: 'h-6 w-6 inline-flex',
inputWrapper: 'relative',
viewGroup: 'inline-flex flex-wrap',
view: 'w-64',
calendarDaysWrapper: 'grid grid-cols-7',
calendarHeaderWrapper: 'grid grid-cols-7',
monthWrapper: 'grid grid-cols-4',
yearWrapper: 'grid grid-cols-4',
clearButton: 'flex flex-shrink-0 items-center justify-center absolute right-0 top-0 m-2 h-6 w-6',
clearButtonIcon: 'fill-current h-3 w-3'
}