Skip to content

Commit

Permalink
What to Expect: Implemented Image from next/image and included alt tags
Browse files Browse the repository at this point in the history
  • Loading branch information
kobebuckley committed Sep 19, 2023
1 parent 653f46b commit ae41798
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/WhatToExpect.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react'

import Image from 'next/image'

const TextBlock =({src, title, text}) => {
return (
<div className=" flex-1 h-12 flex items-center flex-col ">
<img src={src} className="h-12" />
<Image alt='Decorational images representing the Meet & Greet, Debrief on Projects and Announcements, and Participation in breakout rooms' src={src} className="h-12" />
<h5
className="font-extrabold py-8 text-transparent lg:text-3xl text-xl
font-montserat bg-clip-text bg-gradient-to-r from-red-400 to-yellow-400"
Expand Down

0 comments on commit ae41798

Please sign in to comment.