19 lines
343 B
JavaScript
19 lines
343 B
JavaScript
import { Box, Text } from "@chakra-ui/react";
|
|
import React from "react";
|
|
import welcome from '../Images/welcomeBanner.gif'
|
|
|
|
const WelcomePage = () => {
|
|
return (
|
|
<Box
|
|
display={"flex"}
|
|
justifyContent={"center"}
|
|
alignItems={"center"}
|
|
w={"100%"}
|
|
h={"100%"}
|
|
>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default WelcomePage;
|