This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/src/components/ProjectCard.vue

20 lines
653 B
Vue
Raw Normal View History

2019-04-24 10:29:32 +01:00
<template>
2019-06-14 23:02:33 +01:00
<article>
2019-04-28 18:41:50 +01:00
<router-link :to="{ name: 'project', params: { id: 1 }}" class="group block hover:no-underline">
2019-04-24 10:33:06 +01:00
<span class="block bg-gray-100 shadow-lg rounded overflow-hidden">
<span class="block p-6">
<h2 class="font-bold text-gray-800 group-hover:underline">Drupal Bristol</h2>
2019-04-24 10:29:32 +01:00
2019-04-24 10:33:06 +01:00
<p class="text-gray-600">accounts-partners</p>
2019-04-24 10:29:32 +01:00
2019-05-07 17:39:44 +01:00
<img src="../assets/img/download.jpg" alt="" class="shadow-2xl rounded mt-4">
2019-04-24 10:33:06 +01:00
</span>
2019-04-24 10:29:32 +01:00
2019-06-14 20:08:30 +01:00
<span class="block py-5 px-8 -mt-24 relative bg-white">
2019-04-24 10:33:06 +01:00
<p>Europe (West 1)</p>
</span>
</span>
2019-04-28 13:59:51 +02:00
</router-link>
2019-04-24 10:29:32 +01:00
</article>
</template>