-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SOEOPSFY-301 | build out prototype of vertical border grid for timeline
- Loading branch information
1 parent
1e9a955
commit f9e6751
Showing
6 changed files
with
49 additions
and
14 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
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,19 @@ | ||
import { Masthead } from "@/components/Masthead"; | ||
import { PageTitle } from "@/components/PageTitle"; | ||
import TimelineOverview from "@/components/TimelineEven/TimelineOverview"; | ||
import { loadTimelineData } from "@/utilities/loadTimelineData"; | ||
|
||
const TimelinePage = async () => { | ||
const timelineData = await loadTimelineData(); | ||
return ( | ||
<div> | ||
<Masthead isLight /> | ||
<PageTitle heading="100 years of" bigText="Impact" /> | ||
<TimelineOverview timelineData={timelineData} hasBorder /> | ||
<PageTitle heading="100 years of" bigText="Impact" /> | ||
<TimelineOverview timelineData={timelineData} /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default TimelinePage; |
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