merakiui/components/email-templates/Notification.html

60 lines
3.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>
</head>
<body>
<section class="max-w-2xl px-6 py-8 mx-auto bg-white dark:bg-gray-900">
<header>
<a href="#">
<img class="w-auto h-7 sm:h-8" src="https://merakiui.com/images/full-logo.svg" alt="">
</a>
<nav class="flex items-center mt-6 gap-x-6 sm:gap-x-8">
<a href="#" class="text-sm text-gray-600 transition-colors duration-300 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400" aria-label="Reddit"> Home </a>
<a href="#" class="text-sm text-gray-600 transition-colors duration-300 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400" aria-label="Reddit"> Blog </a>
<a href="#" class="text-sm text-gray-600 transition-colors duration-300 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400" aria-label="Reddit"> Tutorials </a>
<a href="#" class="text-sm text-gray-600 transition-colors duration-300 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400" aria-label="Reddit"> Support </a>
</nav>
</header>
<main class="mt-8">
<h2 class="text-gray-700 dark:text-gray-200">Hi Olivia,</h2>
<p class="mt-2 leading-loose text-gray-600 dark:text-gray-300">
Were glad to have you onboard! Youre already on your way to
creating beautiful visual products.
Whether youre here for your brand, for a cause, or just for fun —
welcome! If theres anything you need, well be here every step of the way.
</p>
<p class="mt-2 text-gray-600 dark:text-gray-300">
Thanks, <br>
Meraki UI team
</p>
<button class="px-6 py-2 mt-8 text-sm font-medium tracking-wider text-white capitalize transition-colors duration-300 transform bg-blue-600 rounded-lg hover:bg-blue-500 focus:outline-none focus:ring focus:ring-blue-300 focus:ring-opacity-80">
Login
</button>
</main>
<footer class="mt-8">
<p class="text-gray-500 dark:text-gray-400">
This email was sent to <a href="#" class="text-blue-600 hover:underline dark:text-blue-400" target="_blank">contact@merakiui.com</a>.
If you'd rather not receive this kind of email, you can <a href="#" class="text-blue-600 hover:underline dark:text-blue-400">unsubscribe</a> or <a href="#" class="text-blue-600 hover:underline dark:text-blue-400">manage your email preferences</a>.
</p>
<p class="mt-3 text-gray-500 dark:text-gray-400">© {{ new Date().getFullYear() }} Meraki UI. All Rights Reserved.</p>
</footer>
</section>
</body>
</html>