-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from mr-muhammad-rehan/feat/dark-themed-banner…
…-component feat: Dark Themed Banner Component'
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!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="bg-gray-900 text-white"> | ||
<div class="mx-auto max-w-screen-xl px-4 py-32 lg:flex lg:h-screen lg:items-center"> | ||
<div class="mx-auto max-w-3xl text-center"> | ||
<h1 | ||
class="bg-gradient-to-r from-green-300 via-blue-500 to-purple-600 bg-clip-text text-3xl font-extrabold text-transparent sm:text-5xl"> | ||
Understand User Flow. | ||
|
||
<span class="sm:block"> Increase Conversion. </span> | ||
</h1> | ||
|
||
<p class="mx-auto mt-4 max-w-xl sm:text-xl/relaxed"> | ||
Meraki UI is a collection of responsive Tailwind CSS components that enhance the user experience of | ||
your | ||
website. with support for RTL languages, and a sleek Dark Mode. | ||
</p> | ||
|
||
<div class="mt-8 flex flex-wrap justify-center gap-4"> | ||
<a class="block w-full rounded border border-blue-600 bg-blue-600 px-12 py-3 text-sm font-medium text-white hover:bg-transparent hover:text-white focus:outline-none focus:ring active:text-opacity-75 sm:w-auto" | ||
href="#"> | ||
Get Started | ||
</a> | ||
|
||
<a class="block w-full rounded border border-blue-600 px-12 py-3 text-sm font-medium text-white hover:bg-blue-600 focus:outline-none focus:ring active:bg-blue-500 sm:w-auto" | ||
href="#"> | ||
Learn More | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</body> | ||
|
||
</html> |