-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
45066d1
commit 98b783d
Showing
12 changed files
with
222 additions
and
14 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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,94 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Photos</title> | ||
<meta content="NaviGator AMS" property="og:title" /> | ||
<meta content="NaviGator AMS is a set of maritime vehicles built by students in the Machine Intelligence Laboratory (MIL) at the University of Florida (UF) for the Maritime RobotX competition." property="og:description" /> | ||
<meta content="https://navigatoruf.org" property="og:url" /> | ||
<meta content="https://navigatoruf.org/assets/hawaii_resting.jpg" property="og:image" /> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
<meta content="#FA4616" data-react-helmet="true" name="theme-color" /> | ||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet"> <!-- Inter font used in the figma --> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
</head> | ||
<body class="bg-gray-300" style="font-family: 'Inter', sans-serif;"> | ||
<!-- Header Section --> | ||
<div class="relative"> | ||
<header class="relative h-[500px] bg-cover bg-center" style="background-image: url('./assets/hawaii_resting.jpg'); ; background-color: rgba(0, 0, 0, 0.5); background-blend-mode: darken;"> | ||
<nav class="absolute top-0 left-0 w-full p-6 flex justify-between items-center"> | ||
<div> | ||
<img src="./assets/logo.png" alt="NaviGator AMS Logo" class="h-10"> | ||
</div> | ||
<ul class="flex space-x-6 z-20"> | ||
<li><a href="index.html" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Home</a></li> | ||
<li><a href="team.html" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Team</a></li> | ||
<li><a href="vehicle.html" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Vehicle</a></li> | ||
<li><a href="sponsors.html" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Sponsors</a></li> | ||
<li><a href="#" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Photos</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<div class="absolute inset-0 flex flex-col justify-center items-center text-white"> | ||
<h1 class="text-7xl font-bold">Photos</h1> | ||
</div> | ||
</header> | ||
</div> | ||
<!-- Section 2 (Large Photo with Arrows) --> | ||
<section class="relative max-w-6xl mx-auto py-8"> | ||
<div class="relative"> | ||
<div class="flex justify-center"> | ||
<img src="./assets/teams.jpg" alt="teams" class="w-full object-relative rounded-lg h-relative"> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<!-- Grid of Smaller Photos --> | ||
<section class="max-w-6xl mx-auto py-8 grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-4 gap-4"> | ||
<div class="relative"> | ||
<img src="./assets/boat.jpg" alt="Boat at Sea" class="w-full object-cover h-[200px] rounded-lg cursor-pointer" onclick="openModal(this.src)"> | ||
</div> | ||
<div class="relative"> | ||
<img src="./assets/navigator.jpg" alt="Boat Preparing" class="w-full object-cover h-[200px] rounded-lg cursor-pointer" onclick="openModal(this.src)"> | ||
</div> | ||
<div class="relative"> | ||
<img src="./assets/navigatorams.jpg" alt="Testing Equipment" class="w-full object-cover h-[200px] rounded-lg cursor-pointer" onclick="openModal(this.src)"> | ||
</div> | ||
<div class="relative"> | ||
<img src="./assets/person.jpg" alt="Teamwork" class="w-full object-cover h-[200px] rounded-lg cursor-pointer" onclick="openModal(this.src)"> | ||
</div> | ||
<div class="relative"> | ||
<img src="./assets/1.jpg" alt="Teamwork" class="w-full object-cover h-[200px] rounded-lg cursor-pointer" onclick="openModal(this.src)"> | ||
</div> | ||
<div class="relative"> | ||
<img src="./assets/2.jpg" alt="Teamwork" class="w-full object-cover h-[200px] rounded-lg cursor-pointer" onclick="openModal(this.src)"> | ||
</div> | ||
<div class="relative"> | ||
<img src="./assets/3.jpg" alt="Teamwork" class="w-full object-cover h-[200px] rounded-lg cursor-pointer" onclick="openModal(this.src)"> | ||
</div> | ||
<div class="relative"> | ||
<img src="./assets/4.jpg" alt="Teamwork" class="w-full object-cover h-[200px] rounded-lg cursor-pointer" onclick="openModal(this.src)"> | ||
</div> | ||
</section> | ||
|
||
<!-- Fullscreen Modal --> | ||
<div id="modal" class="fixed top-0 left-0 w-full h-full flex items-center justify-center bg-black bg-opacity-75 hidden"> | ||
<span class="absolute top-10 right-10 text-white text-3xl cursor-pointer" onclick="closeModal()">×</span> | ||
<img alt="modal" id="modalImg" class="max-w-full max-h-full object-contain"> | ||
</div> | ||
|
||
<script> | ||
// Function to open the modal and set the image | ||
function openModal(src) { | ||
document.getElementById('modalImg').src = src; | ||
document.getElementById('modal').classList.remove('hidden'); | ||
} | ||
|
||
// Function to close the modal | ||
function closeModal() { | ||
document.getElementById('modal').classList.add('hidden'); | ||
} | ||
</script> | ||
</body> | ||
</html> |
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,127 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Meet the Team</title> | ||
<meta content="NaviGator AMS" property="og:title" /> | ||
<meta content="NaviGator AMS is a set of maritime vehicles built by students in the Machine Intelligence Laboratory (MIL) at the University of Florida (UF) for the Maritime RobotX competition." property="og:description" /> | ||
<meta content="https://navigatoruf.org" property="og:url" /> | ||
<meta content="https://navigatoruf.org/assets/hawaii_resting.jpg" property="og:image" /> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
<meta content="#FA4616" data-react-helmet="true" name="theme-color" /> | ||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet"> <!-- Inter font used in the figma --> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
</head> | ||
<body class="bg-gray-300" style="font-family: 'Inter', sans-serif;"> | ||
<!-- Header Section --> | ||
<div class="relative"> | ||
<header class="relative h-[500px] bg-cover bg-center" style="background-image: url('./assets/hawaii_resting.jpg'); ; background-color: rgba(0, 0, 0, 0.5); background-blend-mode: darken;"> | ||
<nav class="absolute top-0 left-0 w-full p-6 flex justify-between items-center"> | ||
<div> | ||
<img src="./assets/logo.png" alt="NaviGator AMS Logo" class="h-10"> | ||
</div> | ||
<ul class="flex space-x-6 z-20"> | ||
<li><a href="index.html" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Home</a></li> | ||
<li><a href="#" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Team</a></li> | ||
<li><a href="vehicle.html" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Vehicle</a></li> | ||
<li><a href="sponsors.html" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Sponsors</a></li> | ||
<li><a href="photos.html" class="text-white rounded-md px-1.5 py-1 hover:text-black hover:bg-gray-200 transition-all duration-300">Photos</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<div class="absolute inset-0 flex flex-col justify-center items-center text-white"> | ||
<h1 class="text-7xl font-bold">Meet the Team</h1> | ||
</div> | ||
</header> | ||
</div> | ||
|
||
<!-- Teams Section --> | ||
<section class="max-w-6xl mx-auto py-16 bg-gray-300"> | ||
<div class="text-center mb-12"> <!-- Added more bottom margin to spread out sections --> | ||
<h2 class="text-3xl font-bold mb-10">Mechanical Team</h2> | ||
</div> | ||
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | ||
<!-- Example Team Member Placeholder --> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> <!-- Increased height to make cards taller --> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
</div> | ||
|
||
<!-- Additional margin between sections --> | ||
<div class="text-center mt-16 mb-12"> <!-- Added margin top and bottom for more space --> | ||
<h2 class="text-3xl font-bold mb-10">Software Team</h2> | ||
</div> | ||
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
</div> | ||
|
||
<!-- More space between sections --> | ||
<div class="text-center mt-16 mb-12"> | ||
<h2 class="text-3xl font-bold mb-10">Electrical Team</h2> | ||
</div> | ||
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
<div class="bg-white p-6 rounded-lg shadow-lg h-[300px]"> | ||
<div class="flex items-center justify-center"> | ||
<div class="rounded-full h-16 w-16 bg-gray-300 flex items-center justify-center text-2xl font-bold">D</div> | ||
</div> | ||
<h3 class="mt-4 text-xl font-semibold">Software Engineer</h3> | ||
<p class="text-gray-600">Jane Doe</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
</body> | ||
</html> |