source: reactapp/src/Pages/Home.js@ 800779d

main
Last change on this file since 800779d was 800779d, checked in by unknown <mlviktor23@…>, 2 years ago

created login page

  • Property mode set to 100644
File size: 719 bytes
Line 
1import React from "react";
2import { MainWrapper, MainTitle } from "../Components/Styled/Main.style";
3import { Outlet } from "react-router-dom";
4import Search from "../Components/Search";
5
6function Home() {
7 return (
8 <MainWrapper>
9 <style>
10 @import
11 url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
12 </style>
13 <style>
14 {
15 "body { background-color: papayawhip;} * {margin: 0; padding: 0; box-sizing: border-box;}"
16 }
17 </style>
18 <a href="/">
19 <MainTitle>profesori.mk</MainTitle>
20 </a>{" "}
21 <Search />
22 <Outlet />
23 </MainWrapper>
24 );
25}
26
27export default Home;
Note: See TracBrowser for help on using the repository browser.