Commit f2f1df76 authored by Balasuriya D.A.M.'s avatar Balasuriya D.A.M.

Initial Style Frontend with BIMG

parent 3f4d310c
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300&display=swap');
.App{
min-height: 100vh;
display: flex;
background-image: url("./background.jpg");
background-size: cover;
background-position: center;
}
\ No newline at end of file
......@@ -2,7 +2,6 @@
import "./App.css";
import { Route } from "react-router-dom";
import Homepage from "./Pages/Homepage";
import { Button } from "@chakra-ui/react";
import ChatPage from "./Pages/ChatPage";
......@@ -11,7 +10,7 @@ function App() {
<div className="App">
<Route path="/" component={Homepage} exact />
<Route path="/chats" component={ChatPage} />
<Button colorScheme='blue'>Button</Button>
</div>
);
}
......
......@@ -3,7 +3,7 @@ import React from "react";
const Homepage = () => {
return(
<div>
Home Page
</div>
);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment