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:
51
components/blog/SinglePost.html
Normal file
51
components/blog/SinglePost.html
Normal file
@@ -0,0 +1,51 @@
|
||||
<!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">
|
||||
<h1 class="text-3xl font-semibold text-gray-800 capitalize lg:text-4xl dark:text-white">From the blog</h1>
|
||||
|
||||
<div class="mt-8 lg:-mx-6 lg:flex lg:items-center">
|
||||
<img class="object-cover w-full lg:mx-6 lg:w-1/2 rounded-xl h-72 lg:h-96" src="https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" alt="">
|
||||
|
||||
<div class="mt-6 lg:w-1/2 lg:mt-0 lg:mx-6 ">
|
||||
<p class="text-sm text-blue-500 uppercase">category</p>
|
||||
|
||||
<a href="#" class="block mt-4 text-2xl font-semibold text-gray-800 hover:underline dark:text-white md:text-3xl">
|
||||
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>
|
||||
|
||||
<a href="#" class="inline-block mt-2 text-blue-500 underline hover:text-blue-400">Read more</a>
|
||||
|
||||
<div class="flex items-center mt-6">
|
||||
<img class="object-cover object-center w-10 h-10 rounded-full" src="https://images.unsplash.com/photo-1531590878845-12627191e687?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=764&q=80" alt="">
|
||||
|
||||
<div class="mx-4">
|
||||
<h1 class="text-sm text-gray-700 dark:text-gray-200">Amelia. Anderson</h1>
|
||||
<p class="text-sm text-gray-500 dark:text-gray-400">Lead Developer</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user