-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
12 changed files
with
318 additions
and
256 deletions.
There are no files selected for viewing
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
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,50 @@ | ||
import {FaRobot} from 'react-icons/fa' | ||
import SectionHead from './SectionHead' | ||
import {pagesdirectevent} from '../data.js' | ||
import Card from '../UI/Card' | ||
import {AiFillCaretRight} from 'react-icons/ai' | ||
|
||
|
||
const PagesDirectEvent = () => { | ||
return ( | ||
<section className="pagesdirect"> | ||
<div className="container pagesdirect"> | ||
<SectionHead icon={<FaRobot/>} title="EVENT INFORMATION"/> | ||
<div className="pages__wrapper"> | ||
<Card className="pages__page" key="1"> | ||
<span><FaRobot/></span> | ||
<h4>Schedule</h4> | ||
<small>Check out the schedule for all competition days</small> | ||
<a href="https://www.firstinspires.org/sites/default/files/uploads/frc/2024-events/2024_NJALL_Agenda.pdf" rel="noreferrer noopener" className="btn sm">View<AiFillCaretRight/></a> | ||
</Card> | ||
<Card className="pages__page" key="1"> | ||
<span><FaRobot/></span> | ||
<h4>Volunteer</h4> | ||
<small>Sign up to volunteer for our District Event</small> | ||
<a href="*" rel="noreferrer noopener" className="btn sm">View<AiFillCaretRight/></a> | ||
</Card> | ||
<Card className="pages__page" key="1"> | ||
<span><FaRobot/></span> | ||
<h4>Information Packet</h4> | ||
<small>Please read our regulations below</small> | ||
<a href="./welcomepacket.pdf"rel="noreferrer noopener" className="btn sm">View<AiFillCaretRight/></a> | ||
</Card> | ||
{/* { | ||
pagesdirectevent.map(({id, icon, title, info, url}) => { | ||
return ( | ||
<Card className="pages__page" key={id}> | ||
<span>{icon}</span> | ||
<h4>{title}</h4> | ||
<small>{info}</small> | ||
<Link to={url} className="btn sm">View<AiFillCaretRight/></Link> | ||
</Card> | ||
) | ||
}) | ||
} */} | ||
</div> | ||
</div> | ||
</section> | ||
) | ||
} | ||
|
||
export default PagesDirectEvent |
Oops, something went wrong.