mirror of
https://github.com/DevEhChad/chadsreactproject.git
synced 2025-11-08 13:31:35 +00:00
Helmet Implemented
react-helmet added
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import "./App.css";
|
||||
import {Helmet} from "react-helmet";
|
||||
import Navbar from "./components/Navbar";
|
||||
import Footer from "./components/Footer";
|
||||
import Home from "./pages/Home";
|
||||
@@ -10,6 +11,12 @@ import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
|
||||
function App() {
|
||||
return (
|
||||
<div className="App">
|
||||
<Helmet>
|
||||
<meta charSet="utf-8" />
|
||||
<title>Eh Chad Services</title>
|
||||
<link rel="canonical" href="http://ehchadservices.com/" />
|
||||
<meta name="description" content="Testing Website" />
|
||||
</Helmet>
|
||||
<Router>
|
||||
<Navbar />
|
||||
<Routes>
|
||||
|
||||
Reference in New Issue
Block a user