2 changed files with 338 additions and 0 deletions
			
			
		@ -0,0 +1,157 @@ | 
				
			|||||
 | 
					<!doctype html> | 
				
			||||
 | 
					<html class="text-slate-700"> | 
				
			||||
 | 
					<head> | 
				
			||||
 | 
						<title>Give to Contacts - Kickstarter for Time</title> | 
				
			||||
 | 
						<meta charset="UTF-8"> | 
				
			||||
 | 
						<meta name="viewport" content="width=device-width, initial-scale=1.0"> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<!-- Tailwind --> | 
				
			||||
 | 
						<script src="https://cdn.tailwindcss.com?plugins=forms"></script> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<!-- Font Awesome --> | 
				
			||||
 | 
						<script src="https://kit.fontawesome.com/2396c18fde.js" crossorigin="anonymous"></script> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<link href="css/main.css" rel="stylesheet"> | 
				
			||||
 | 
					</head> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					<body> | 
				
			||||
 | 
					<!-- QUICK NAV --> | 
				
			||||
 | 
					<nav id="QuickNav" class="fixed bottom-0 left-0 right-0 bg-slate-200 z-50"> | 
				
			||||
 | 
						<ul class="flex text-2xl p-2 gap-2"> | 
				
			||||
 | 
							<!-- Home Feed --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md text-slate-500"><a href="" class="block text-center py-3 px-1"><i class="fa-solid fa-house-chimney fa-fw"></i></a></li> | 
				
			||||
 | 
							<!-- Search --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md text-slate-500"><a href="search.html" class="block text-center py-3 px-1"><i class="fa-solid fa-magnifying-glass fa-fw"></i></a></li> | 
				
			||||
 | 
							<!-- Projects --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md text-slate-500"><a href="" class="block text-center py-3 px-1"><i class="fa-solid fa-folder-open fa-fw"></i></a></li> | 
				
			||||
 | 
							<!-- Contacts --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md bg-slate-400 text-white"><a href="contact-list.html" class="block text-center py-3 px-1"><i class="fa-solid fa-users fa-fw"></i></a></li> | 
				
			||||
 | 
							<!-- Profile --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md text-slate-500"><a href="account-view.html" class="block text-center py-3 px-1"><i class="fa-solid fa-circle-user fa-fw"></i></a></li> | 
				
			||||
 | 
						</ul> | 
				
			||||
 | 
					</nav> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					<!-- CONTENT --> | 
				
			||||
 | 
					<section id="Content" class="p-6 pb-24"> | 
				
			||||
 | 
						<!-- Breadcrumb --> | 
				
			||||
 | 
						<div id="ViewBreadcrumb" class="mb-8"> | 
				
			||||
 | 
							<h1 class="text-lg text-center font-light relative px-7"> | 
				
			||||
 | 
								<!-- Back --> | 
				
			||||
 | 
								<a href="home.html" class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"><i class="fa-solid fa-chevron-left fa-fw"></i></a> | 
				
			||||
 | 
								<!-- Context Menu --> | 
				
			||||
 | 
								<a href="" class="text-lg text-center px-2 py-1 absolute -right-2 -top-1"><i class="fa-solid fa-ellipsis-vertical fa-fw"></i></a> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
								Give to Contacts | 
				
			||||
 | 
							</h1> | 
				
			||||
 | 
						</div> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<!-- Quick Search --> | 
				
			||||
 | 
						<form id="QuickSearch" class="mb-4 flex"> | 
				
			||||
 | 
							<input type="text" placeholder="Search…" class="block w-full rounded-l border-r-0 border-slate-400" /> | 
				
			||||
 | 
							<button class="px-4 rounded-r bg-slate-200 border border-l-0 border-slate-400"><i class="fa-solid fa-magnifying-glass fa-fw"></i></button> | 
				
			||||
 | 
						</form> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<!-- Initial Loading Animation --> | 
				
			||||
 | 
						<!-- SHOW ME only during load of first set of results --> | 
				
			||||
 | 
						<p class="hidden text-slate-500 text-center italic mt-8 mb-4"><i class="fa-solid fa-spinner fa-spin-pulse"></i> Loading…</p> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<!-- Results List --> | 
				
			||||
 | 
						<ul class="border-t border-slate-300"> | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User One</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Two</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Three</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Four</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Five</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Six</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Seven</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Eight</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Nine</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
								<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
									<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Ten</span> | 
				
			||||
 | 
									<span class="text-right"> | 
				
			||||
 | 
										<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
									</span> | 
				
			||||
 | 
								</h2> | 
				
			||||
 | 
							</li> | 
				
			||||
 | 
						</ul> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<!-- Infinite Scroll Loading Animation --> | 
				
			||||
 | 
						<!-- SHOW ME only while loading more results into list --> | 
				
			||||
 | 
						<p class="hidden text-slate-500 text-center italic mt-8 mb-4"><i class="fa-solid fa-spinner fa-spin-pulse"></i> Loading More…</p> | 
				
			||||
 | 
					</section> | 
				
			||||
 | 
					</body> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					</html> | 
				
			||||
@ -0,0 +1,181 @@ | 
				
			|||||
 | 
					<!doctype html> | 
				
			||||
 | 
					<html class="text-slate-700"> | 
				
			||||
 | 
					<head> | 
				
			||||
 | 
						<title>Home - Kickstarter for Time</title> | 
				
			||||
 | 
						<meta charset="UTF-8"> | 
				
			||||
 | 
						<meta name="viewport" content="width=device-width, initial-scale=1.0"> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<!-- Tailwind --> | 
				
			||||
 | 
						<script src="https://cdn.tailwindcss.com?plugins=forms"></script> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<!-- Font Awesome --> | 
				
			||||
 | 
						<script src="https://kit.fontawesome.com/2396c18fde.js" crossorigin="anonymous"></script> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<link href="css/main.css" rel="stylesheet"> | 
				
			||||
 | 
					</head> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					<body> | 
				
			||||
 | 
					<!-- QUICK NAV --> | 
				
			||||
 | 
					<nav id="QuickNav" class="fixed bottom-0 left-0 right-0 bg-slate-200 z-50"> | 
				
			||||
 | 
						<ul class="flex text-2xl p-2 gap-2"> | 
				
			||||
 | 
							<!-- Home Feed --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md bg-slate-400 text-white"><a href="" class="block text-center py-3 px-1"><i class="fa-solid fa-house-chimney fa-fw"></i></a></li> | 
				
			||||
 | 
							<!-- Search --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md text-slate-500"><a href="search.html" class="block text-center py-3 px-1"><i class="fa-solid fa-magnifying-glass fa-fw"></i></a></li> | 
				
			||||
 | 
							<!-- Projects --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md text-slate-500"><a href="" class="block text-center py-3 px-1"><i class="fa-solid fa-folder-open fa-fw"></i></a></li> | 
				
			||||
 | 
							<!-- Contacts --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md text-slate-500"><a href="contact-list.html" class="block text-center py-3 px-1"><i class="fa-solid fa-users fa-fw"></i></a></li> | 
				
			||||
 | 
							<!-- Profile --> | 
				
			||||
 | 
							<li class="basis-1/5 rounded-md text-slate-500"><a href="account-view.html" class="block text-center py-3 px-1"><i class="fa-solid fa-circle-user fa-fw"></i></a></li> | 
				
			||||
 | 
						</ul> | 
				
			||||
 | 
					</nav> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					<!-- CONTENT --> | 
				
			||||
 | 
					<section id="Content" class="p-6 pb-24"> | 
				
			||||
 | 
						<!-- Heading --> | 
				
			||||
 | 
						<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">Time Safari</h1> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<div class="mb-8"> | 
				
			||||
 | 
							<h2 class="text-xl font-bold">Quick Action</h2> | 
				
			||||
 | 
							<p class="mb-4">Show appreciation to a contact:</p> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<ul class="grid grid-cols-4 gap-x-3 gap-y-5 text-center mb-5"> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-question-circle fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium italic text-ellipsis whitespace-nowrap overflow-hidden">Anonymous</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Dave Grohl</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Taylor hawkins</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Chris Shiflett</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Kurt Cobain</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Krist Novoselic</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Chad Channing</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Lori Goldston</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Franz Stahl</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Nate Mendel</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Rami Jaffee</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
								<li> | 
				
			||||
 | 
									<a href=""> | 
				
			||||
 | 
										<div class="mb-1"><i class="fa-solid fa-user fa-fw fa-xl text-slate-400"></i></div> | 
				
			||||
 | 
										<h3 class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden">Josh Freese</h3> | 
				
			||||
 | 
									</a> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
							</ul> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<!-- ul class="border-t border-slate-300 mb-4"> | 
				
			||||
 | 
								<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
									<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
										<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User One</span> | 
				
			||||
 | 
										<span class="text-right"> | 
				
			||||
 | 
											<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
										</span> | 
				
			||||
 | 
									</h2> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
						 | 
				
			||||
 | 
								<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
									<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
										<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Two</span> | 
				
			||||
 | 
										<span class="text-right"> | 
				
			||||
 | 
											<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
										</span> | 
				
			||||
 | 
									</h2> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
						 | 
				
			||||
 | 
								<li class="border-b border-slate-300 py-3"> | 
				
			||||
 | 
									<h2 class="text-base flex gap-4 items-center"> | 
				
			||||
 | 
										<span class="grow font-semibold"><i class="fa-solid fa-user fa-fw text-slate-400"></i> User Three</span> | 
				
			||||
 | 
										<span class="text-right"> | 
				
			||||
 | 
											<button type="button" class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"><i class="fa-solid fa-gift fa-fw"></i></button> | 
				
			||||
 | 
										</span> | 
				
			||||
 | 
									</h2> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
							</ul --> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<a href="contact-list-give.html" class="block text-center text-md font-bold uppercase bg-slate-500 text-white px-2 py-3 rounded-md">Show More Contacts…</a> | 
				
			||||
 | 
						</div> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						<div class="bg-slate-100 rounded-md overflow-hidden px-4 py-3 mb-4"> | 
				
			||||
 | 
							<h2 class="text-xl font-bold mb-4">Latest Activity</h2> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
							<ul class="border-t border-slate-300"> | 
				
			||||
 | 
								<li class="border-b border-slate-300 py-2"> | 
				
			||||
 | 
									<div class="flex"> | 
				
			||||
 | 
										<i class="fa-solid fa-gift pt-1 pr-2 text-slate-500"></i> | 
				
			||||
 | 
										<span class="">[Sender] gave [amount] to [recipient]</span> | 
				
			||||
 | 
									</div> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
								<li class="border-b border-slate-300 py-2"> | 
				
			||||
 | 
									<div class="flex"> | 
				
			||||
 | 
										<i class="fa-solid fa-gift pt-1 pr-2 text-slate-500"></i> | 
				
			||||
 | 
										<span class="">[Sender] gave [amount] to [recipient]</span> | 
				
			||||
 | 
									</div> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
								<li class="border-b border-slate-300 py-2"> | 
				
			||||
 | 
									<div class="border-b border-dashed border-slate-400 text-orange-400 py-2 mb-2 font-bold uppercase text-sm">Previous Activity:</div> | 
				
			||||
 | 
									 | 
				
			||||
 | 
									<div class="flex"> | 
				
			||||
 | 
										<i class="fa-solid fa-gift pt-1 pr-2 text-slate-500"></i> | 
				
			||||
 | 
										<span class="">[Sender] gave [amount] to [recipient]</span> | 
				
			||||
 | 
									</div> | 
				
			||||
 | 
								</li> | 
				
			||||
 | 
							</ul> | 
				
			||||
 | 
						</div> | 
				
			||||
 | 
					</section> | 
				
			||||
 | 
					</body> | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					</html> | 
				
			||||
					Loading…
					
					
				
		Reference in new issue