Skip to content

Commit

Permalink
Hopefully fix hero image
Browse files Browse the repository at this point in the history
  • Loading branch information
zagdrath committed Jan 26, 2024
1 parent a94e68e commit 2f224a4
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*/

import Head from "next/head";
import Image from "next/image";

export default function Page() {
return (
Expand All @@ -15,12 +14,11 @@ export default function Page() {
</Head>
<div className="hero min-h-screen bg-base-100">
<div className="hero-content flex-col lg:flex-row">
{/* <Image
src={"/team3602-site/team-photo.jpg"}
width={1920}
<img
src="https://raw.githubusercontent.com/frc3602/team3602-site/main/src/public/team-photo.jpg"
alt="RoboMos Team 3602 Photo"
/> */}
<img src="/team3602-site/team-photo.jpg" alt="RoboMos Team 3602 Photo" />
className="max-w-2xl rounded-lg shadow-2xl"
/>
<div className="pl-12">
<h1 className="text-5xl font-bold">RoboMos Team 3602</h1>
<p className="py-6">
Expand Down

0 comments on commit 2f224a4

Please sign in to comment.