86 lines
4.4 KiB
Plaintext
86 lines
4.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><%= title %></title>
|
|
<meta name="title" content="modules." />
|
|
<meta name="description" content="modules.lol is an open-source 'app store' for Android apps and Magisk/KernelSU modules." />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://modules.lol/" />
|
|
<meta property="og:title" content="modules." />
|
|
<meta property="og:description" content="modules.lol is an open-source 'app store' for Android apps and Magisk/KernelSU modules." />
|
|
<meta property="twitter:url" content="https://modules.lol/" />
|
|
<meta property="twitter:title" content="modules." />
|
|
<meta property="twitter:description" content="modules.lol is an open-source 'app store' for Android apps and Magisk/KernelSU modules." />
|
|
<link href="/css/styles.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css" integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
</head>
|
|
<body class="bg-slate-900">
|
|
<header class="sticky top-0 bg-slate-900 z-50">
|
|
<div class="container mx-auto p-4 flex justify-between items-center">
|
|
<h1 class="text-4xl font-bold text-white"><a href="#">modules.</a></h1>
|
|
<nav class="hidden md:flex space-x-4">
|
|
<p class="text-gray-300 flex items-center">
|
|
<i class="fas fa-home mr-2"></i> Home
|
|
</p>
|
|
<a href="/apps" class="text-white hover:text-gray-400 flex items-center">
|
|
<i class="fa-brands fa-google-play mr-2"></i> Apps
|
|
</a>
|
|
<a href="/modules" class="text-white hover:text-gray-400 flex items-center">
|
|
<i class="fas fa-puzzle-piece mr-2"></i> Modules
|
|
</a>
|
|
<a href="https://t.me/modules_lol_bot" class="text-white hover:text-gray-400 flex items-center">
|
|
<i class="fas fa-plus mr-2"></i> Submit
|
|
</a>
|
|
<!--
|
|
NOT FINISHED YET
|
|
=====================================================================
|
|
<a href="#" class="text-white hover:text-gray-400 flex items-center">
|
|
<i class="fas fa-tags mr-2"></i> Categories
|
|
</a>
|
|
=====================================================================
|
|
-->
|
|
</nav>
|
|
<button id="menu-btn" class="md:hidden text-white focus:outline-hidden"><i class="fas fa-bars"></i></button>
|
|
</div>
|
|
<div id="mobile-menu" class="hidden md:hidden">
|
|
<p class="flex px-4 py-2 text-gray-300 items-center">
|
|
<i class="fas fa-home mr-2"></i> Home
|
|
</p>
|
|
<a href="/apps" class="flex px-4 py-2 text-white hover:bg-gray-700 items-center">
|
|
<i class="fa-brands fa-google-play mr-2"></i> Apps
|
|
</a>
|
|
<a href="/modules" class="flex px-4 py-2 text-white hover:bg-gray-700 items-center">
|
|
<i class="fas fa-puzzle-piece mr-2"></i> Modules
|
|
</a>
|
|
<!--
|
|
NOT FINISHED YET
|
|
===================================================================================
|
|
<a href="#" class="block px-4 py-2 text-white hover:bg-gray-700 flex items-center">
|
|
<i class="fas fa-tags mr-2"></i> Categories
|
|
</a>
|
|
===================================================================================
|
|
-->
|
|
</div>
|
|
</header>
|
|
<div class="container mx-auto p-4">
|
|
<h1 class="text-4xl font-bold text-white text-center my-20">What are you looking for?</h1>
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6">
|
|
<a href="/apps" class="bg-slate-800/50 backdrop-blur-md rounded-lg shadow-md p-10 flex flex-col justify-between no-underline text-white hover:bg-slate-800/70 transition duration-300">
|
|
<div class="flex flex-col items-center">
|
|
<i class="fa-brands fa-google-play text-9xl text-gray-300"></i>
|
|
<h2 class="text-4xl font-bold text-gray-300 mt-12">Apps</h2>
|
|
</div>
|
|
</a>
|
|
<a href="/modules" class="bg-slate-800/50 backdrop-blur-md rounded-lg shadow-md p-10 flex flex-col justify-between no-underline text-white hover:bg-slate-800/70 transition duration-300">
|
|
<div class="flex flex-col items-center">
|
|
<i class="fas fa-puzzle-piece text-9xl text-gray-300"></i>
|
|
<h2 class="text-4xl font-bold text-gray-300 mt-12">Modules</h2>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<script src="/js/main.js"></script>
|
|
</body>
|
|
</html> |