Created
September 14, 2024 18:34
-
-
Save EvanMarie/003ef415ce0e96b5c740a097ac5dfe3e to your computer and use it in GitHub Desktop.
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
export function AboutAnomalocaris() { | |
return ( | |
<SlideContainer | |
darkMode={false} | |
title="About Anomalocaris" | |
transition="fadeSlideInBottom" | |
audioName="about-anomalocaris" | |
infoPanelContent={anomalocarisNarratives.aboutAnomalocaris} | |
> | |
<PresentationImage | |
darkMode={false} | |
transition="scale" | |
delay={0.5} | |
alt="Anomalocaris" | |
src="PLACEHOLDER_IMAGE_URL" | |
className="w-full" | |
imageNumber={"1"} | |
captionLabel={"Anomalocaris"} | |
caption="Anomalocaris, meaning 'abnormal shrimp,' was one of the largest predators during the Cambrian period. It roamed the oceans over 500 million years ago." | |
/> | |
<PresentationLG padding="p-[1vh] xl:p-[2.5vh]" noBorders darkMode={false}> | |
<PresentationBulletList | |
darkMode={false} | |
direction="flex-row" | |
heading="Key Facts about Anomalocaris" | |
bullets={[ | |
{ | |
highlight: "Length" | |
info: "up to 1 meter (3.3 feet), making it the largest predator of its time.", | |
}, | |
{ | |
highlight: "Diet" | |
info: "Carnivorous, likely preying on trilobites and other marine animals.", | |
}, | |
{ | |
info: "Anomalocaris had a unique, segmented body with large, grasping appendages.", | |
}, | |
{ | |
info: "Its name comes from the strange combination of body parts that were initially thought to be separate animals.", | |
}, | |
]} | |
/> | |
</PresentationLG> | |
</SlideContainer> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment