mirror of
https://github.com/grassrootseconomics/farmstar-survey-ui.git
synced 2025-10-16 19:12:08 +02:00
20 lines
435 B
Vue
20 lines
435 B
Vue
<template>
|
|
<div class="mt-4 flex flex-col md:flex-row md:space-x-4">
|
|
<Card
|
|
title="Registration"
|
|
subtitle="For all participants."
|
|
link="/registration"
|
|
/>
|
|
<Card
|
|
title="Farmers Survey"
|
|
subtitle="For farmers using Evergrow."
|
|
link="/farmer"
|
|
/>
|
|
<Card
|
|
title="Transaction Record"
|
|
subtitle="For all EverGrow purchases."
|
|
link="/transaction"
|
|
/>
|
|
</div>
|
|
</template>
|