74 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en" class="bg-black">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <title>Home</title>
 | |
|   <link rel="stylesheet" href="output.css">
 | |
| </head>
 | |
| <body class="mx-[10%]">
 | |
|   <main class="m-10 h-auto w-auto ">
 | |
| 	<?php include 'header.php'; ?>
 | |
|               <div>
 | |
|                   <h1 class="text-5xl font-bold text-emerald-400">Create and share geo-restricted links</h1>
 | |
|                   <p class="py-6 text-gray-300">GLinkZip enables you to generate and distribute geo-restricted URLs for private, secure access.</p>
 | |
|                   <div class="flex justify-center items-center">
 | |
|                   <button class="btn btn-success text-xl hover:shadow-lg hover:shadow-emerald-400/50">Get Started</button>
 | |
|                   </div>
 | |
|               </div>
 | |
|           </div>
 | |
|       </div>
 | |
|       <!-- New hero end -->
 | |
|     <div class="flex lg:flex-col flex-col w-full mb-24 bg-primary rounded-lg shadow-lg shadow-primary">
 | |
|       <div class="w-full my-12 justify-center items-center flex">
 | |
|         <p class="text-4xl md:text-5xl lg:text-6xl text-emerald-400 font-bold brightness-125">
 | |
|           How it works
 | |
|         </p>
 | |
|       </div>
 | |
|       <div class="flex lg:flex-row flex-col  items-start h-auto w-auto mx-5 mb-5">
 | |
|         <div class="flex flex-col items-center h-full lg:w-1/3 w-full pt-0">
 | |
|           <img src="images/step1.png" alt="pic2" class="bg-black flex-grow m-5 w-full rounded">
 | |
|           <h1 class="text-5xl text-success">
 | |
|             Step 1
 | |
|           </h1>
 | |
|             <p class="py-6 text-gray-300">Create the GLink. You can either create a regular shortened URL, or a geo-restricted one, in which case you can restrict it to a specific radius around your current location.</p>
 | |
|         </div>
 | |
|         <div class="flex flex-col items-center h-full lg:w-1/3 w-full pt-0">
 | |
|           <img src="" alt="pic2" class="bg-black flex-grow m-5 w-full rounded">
 | |
|           <h1 class="text-5xl text-success">
 | |
|             Step 2
 | |
|           </h1>
 | |
|             <p class="py-6 text-gray-300">
 | |
|             Distribute the GLink. If you created a regular link i.e. with no restrictions, then the service works similar to other link shorteners, like TinyURL or Bitly.
 | |
|             </p>
 | |
|         </div>
 | |
|         <div class="flex flex-col items-center h-full lg:w-1/3 w-full pt-0 flex-grow flex-shrink-0">
 | |
|           <img src="" alt="pic2" class="bg-black flex-grow m-5 w-full rounded">
 | |
|           <h1 class="text-5xl text-success ">
 | |
|             Step 3
 | |
|           </h1>
 | |
|             <p class="py-6 text-gray-300">
 | |
|             If the link is geo-restricted, then anyone who accesses it will have to provide their location co-ordinates for authorization.
 | |
|             </p>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|     <div class="w-full border-8 border-black flex flex-col items-center justify-center">
 | |
|       <div class="border-4 border-black w-auto h-auto mt-8 text-4xl md:text-5xl lg:text-6xl flex flex-wrap">
 | |
|         Why GLink?
 | |
|       </div>
 | |
|       <div class="border-4 border-black h-auto mt-4 lg:mx-8 max-w-md sm:flex-grow-0 mb-4 ">
 | |
|         <p class="text-lg md:text-xl lg:text-2xl">
 | |
|           Lorem ipsum dolor sit amet, consectetur adipisicing elit. A ab delectus dolor, dolorem dolorum et facilis, illum ipsam, natus nobis nulla quam repellat saepe! Aperiam doloremque harum laudantium repellendus tempora!
 | |
|         </p>
 | |
|       </div>
 | |
|     </div>
 | |
|   </main>
 | |
| 
 | |
| 
 | |
| <!--  <div class="typewriter bg-white w-fit justify-center items-center mb-10 mx-auto">-->
 | |
| <!--    <h1 class="text-4xl text-center overflow-x-hidden border-r border-r-2 border-r-orange-600 whitespace-nowrap m-auto tracking-wider "></h1>-->
 | |
| <!--  </div>-->
 | |
| 
 | |
| </body>
 | |
| </html>
 |