mirror of
https://github.com/bakateam/merakiui.git
synced 2025-12-10 07:25:34 +00:00
Update components (#78)
* WIP * wrapped components with <html> * Update Co-authored-by: DevDhaif <devdhaif@gmail.com>
This commit is contained in:
66
components/blog/Cards.html
Normal file
66
components/blog/Cards.html
Normal file
@@ -0,0 +1,66 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Meraki UI Components</title>
|
||||
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
|
||||
<script src="//unpkg.com/alpinejs" defer></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<section class="bg-white dark:bg-gray-900">
|
||||
<div class="container px-6 py-10 mx-auto">
|
||||
<div class="text-center">
|
||||
<h1 class="text-3xl font-semibold text-gray-800 capitalize lg:text-4xl dark:text-white">From the blog</h1>
|
||||
|
||||
<p class="max-w-lg mx-auto mt-4 text-gray-500">
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure veritatis sint autem nesciunt, laudantium
|
||||
quia tempore delect
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 gap-8 mt-8 lg:grid-cols-2">
|
||||
<div>
|
||||
<img class="relative z-10 object-cover w-full rounded-md h-96" src="https://images.unsplash.com/photo-1644018335954-ab54c83e007f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" alt="">
|
||||
|
||||
<div class="relative z-20 max-w-lg p-6 mx-auto -mt-20 bg-white rounded-md shadow dark:bg-gray-900">
|
||||
<a href="#" class="font-semibold text-gray-800 hover:underline dark:text-white md:text-xl">
|
||||
All the features you want to know
|
||||
</a>
|
||||
|
||||
<p class="mt-3 text-sm text-gray-500 dark:text-gray-300 md:text-sm">
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure veritatis sint autem nesciunt,
|
||||
laudantium quia tempore delect
|
||||
</p>
|
||||
|
||||
<p class="mt-3 text-sm text-blue-500">21 October 2019</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<img class="relative z-10 object-cover w-full rounded-md h-96" src="https://images.unsplash.com/photo-1497032628192-86f99bcd76bc?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" alt="">
|
||||
|
||||
<div class="relative z-20 max-w-lg p-6 mx-auto -mt-20 bg-white rounded-md shadow dark:bg-gray-900">
|
||||
<a href="#" class="font-semibold text-gray-800 hover:underline dark:text-white md:text-xl">
|
||||
How to use sticky note for problem solving
|
||||
</a>
|
||||
|
||||
<p class="mt-3 text-sm text-gray-500 dark:text-gray-300 md:text-sm">
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure veritatis sint autem nesciunt,
|
||||
laudantium quia tempore delect
|
||||
</p>
|
||||
|
||||
<p class="mt-3 text-sm text-blue-500">20 October 2019</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user