Skip to content

Commit

Permalink
src/pages/Landing.js: Fix Learn More button, add 2024 competition tea…
Browse files Browse the repository at this point in the history
…m photo
  • Loading branch information
cbrxyz committed Nov 11, 2024
1 parent 86271c3 commit a3c87ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Binary file added src/assets/team_2024.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions src/pages/Landing.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from 'react';
import Navbar from '../components/Navbar';
import { NavLink } from 'react-router-dom';

import background from '../assets/hawaii_resting.jpg';
import teamPhoto from '../assets/robotx_2022_team_1.jpg';
import teamPhoto from '../assets/team_2024.jpg';

function Header() {
return (
Expand All @@ -13,7 +14,10 @@ function Header() {
<div className="absolute inset-0 flex flex-col justify-center items-center text-white">
<h1 className="text-7xl font-bold">NaviGator</h1>
<p className="text-2xl mt-2">UF's Autonomous Maritime System</p>
<a href="#vehicle" className="mt-6 px-6 py-3 bg-gray-200 rounded-full text-black font-light hover:text-white hover:bg-opacity-30 hover:border transition-all duration-300">Learn More</a>

<NavLink
to="/vehicle"
className="mt-6 px-6 py-3 bg-gray-200 rounded-full text-black font-light hover:text-white hover:bg-opacity-30 hover:border transition-all duration-300">Learn More</NavLink>
</div>
</header>
);
Expand Down

0 comments on commit a3c87ab

Please sign in to comment.