Showing
1 changed file
with
6 additions
and
2 deletions
1 | import React from "react"; | 1 | import React from "react"; |
2 | import styled from "styled-components"; | 2 | import styled from "styled-components"; |
3 | -import MenuBar from "../Components/MenuList/MenuBar"; | 3 | +import MenuBar from "../Routes/MenuList/MenuBar"; |
4 | -import HomeMain from "../Components/Home/HomeMain"; | 4 | +import HomeMain from "./Home/HomeMain"; |
5 | +import { Helmet } from "react-helmet"; | ||
5 | 6 | ||
6 | const HomeContainer = styled.div` | 7 | const HomeContainer = styled.div` |
7 | width: 100%; | 8 | width: 100%; |
... | @@ -13,6 +14,9 @@ const HomeContainer = styled.div` | ... | @@ -13,6 +14,9 @@ const HomeContainer = styled.div` |
13 | export default () => { | 14 | export default () => { |
14 | return ( | 15 | return ( |
15 | <> | 16 | <> |
17 | + <Helmet> | ||
18 | + <title>Home</title> | ||
19 | + </Helmet> | ||
16 | <HomeContainer> | 20 | <HomeContainer> |
17 | <MenuBar /> | 21 | <MenuBar /> |
18 | <HomeMain /> | 22 | <HomeMain /> | ... | ... |
-
Please register or login to post a comment