Add blog message to the home page
This commit is contained in:
parent
3d0a3a74e0
commit
c4e1589eb9
@ -1,5 +1,14 @@
|
|||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { Flex, Button, Image, Text, IconButton, Link } from "theme-ui";
|
import {
|
||||||
|
Flex,
|
||||||
|
Button,
|
||||||
|
Image,
|
||||||
|
Text,
|
||||||
|
IconButton,
|
||||||
|
Link,
|
||||||
|
Message,
|
||||||
|
Paragraph,
|
||||||
|
} from "theme-ui";
|
||||||
import { useHistory } from "react-router-dom";
|
import { useHistory } from "react-router-dom";
|
||||||
|
|
||||||
import Footer from "../components/Footer";
|
import Footer from "../components/Footer";
|
||||||
@ -141,6 +150,18 @@ function Home() {
|
|||||||
onRequestClose={() => setIsGettingStartedModalOpen(false)}
|
onRequestClose={() => setIsGettingStartedModalOpen(false)}
|
||||||
/>
|
/>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
<Message mb={4}>
|
||||||
|
<Paragraph
|
||||||
|
sx={{
|
||||||
|
fontSize: "12px",
|
||||||
|
fontFamily:
|
||||||
|
"system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',sans-serif",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Check out our new <Link href="https://blog.owlbear.rodeo/">blog</Link>{" "}
|
||||||
|
for all the news on the next version of Owlbear Rodeo
|
||||||
|
</Paragraph>
|
||||||
|
</Message>
|
||||||
<Footer />
|
<Footer />
|
||||||
</Flex>
|
</Flex>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user