-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathActionSection.tsx
More file actions
29 lines (28 loc) · 1.32 KB
/
ActionSection.tsx
File metadata and controls
29 lines (28 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { ActionItem } from './ActionItem/ActionItem';
import styles from './ActionSection.module.scss';
export function ActionSection() {
return (
<div className={styles['actionsection']}>
<div className={styles['inner']}>
<ActionItem
link='/Intro/Overview'
title='Learn'
iconType='info'
text='What is the OET? Who is it for? Why was it created? A new, exciting, radical, freely-licensed Bible translation.'
/>
<ActionItem
link='/Discussion/Blog'
title='News'
iconType='news'
text='As of early March 2026, we have a first draft of most of the sixty-six Bible ‘books’ excluding Leviticus, Numbers, Isaiah, and Jeremiah. Now over 88% of the Bible is drafted.'
/>
<ActionItem
link='/About/Partners'
title='Volunteer'
iconType='volunteer'
text='Wanting to gift your God-given skills to the Bible world? Excited that your work could be freely reused by Bible translators across all the continents and for decades to come? Yes, we need you!'
/>
</div>
</div>
);
}