-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Tiny Wi-Fi Analyzer</title> | ||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet" /> | ||
</head> | ||
|
||
<body class="bg-white text-gray-800 font-sans antialiased"> | ||
<div class="min-h-screen flex flex-col justify-center items-center px-8 md:px-16 py-16"> | ||
<!-- Main Content --> | ||
<div class="max-w-6xl flex flex-wrap md:flex-nowrap items-center space-x-0 md:space-x-12"> | ||
<!-- Text Content --> | ||
<div class="w-full md:w-1/2 mb-8 md:mb-0"> | ||
<h1 class="text-4xl font-semibold mb-4">Tiny Wi-Fi Analyzer</h1> | ||
<h2 class="text-2xl font-light mb-8"> | ||
A handy tool for Wi-Fi analysis on macOS. | ||
</h2> | ||
<div class="flex space-x-4"> | ||
<a href="https://github.com/nolze/tiny-wifi-analyzer/releases/latest/download/Tiny_Wi-Fi_Analyzer.dmg" | ||
class="bg-blue-700 text-white font-bold px-5 py-2 rounded-full hover:bg-blue-600 transition-all duration-300">Download | ||
Now</a> | ||
<a href="https://github.com/nolze/tiny-wifi-analyzer" | ||
class="bg-gray-600 text-white font-bold px-5 py-2 rounded-full hover:bg-gray-500 transition-all duration-300" | ||
target="_blank" rel="noopener noreferrer">GitHub</a> | ||
</div> | ||
</div> | ||
|
||
<!-- Image --> | ||
<div class="flex-shrink-0 w-full md:w-1/2"> | ||
<img src="./assets/screenshot.png" alt="App screenshot" class="rounded-lg" /> | ||
</div> | ||
</div> | ||
|
||
<!-- Footer --> | ||
<div class="absolute bottom-0 left-0 right-0 py-4 flex justify-center items-center"> | ||
<p class="text-sm text-gray-500">© 2023 Tiny Wi-Fi Analyzer</p> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |