TitleBox.js
438 Bytes
import React from "react";
import styled from "styled-components";
const TitleBox = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 15%;
font-size: 30px;
color: white;
margin-bottom: 10px;
`;
const Title = styled.span`
font-family: "Raleway", sans-serif;
`;
export default () => {
return (
<TitleBox>
<Title>KhuChat</Title>
</TitleBox>
);
};