Update App.js

This commit is contained in:
2025-01-07 08:22:43 -05:00
parent 2a7248fbac
commit cb30e85cd1

View File

@@ -1,5 +1,5 @@
import "./App.css";
import {Helmet} from "react-helmet";
import { Helmet } from "react-helmet";
import Navbar from "./components/Navbar";
import Footer from "./components/Footer";
import Discord from "./components/DiscordInt"
@@ -15,27 +15,27 @@ 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>
<meta charSet="utf-8" />
<title>Eh Chad Services</title>
<link rel="canonical" href="http://ehchadservices.com/" />
<meta name="description" content="ehchadservices.com" />
</Helmet>
<Router>
<Navbar />
<Routes>
<Route path="/" exact element={<Home />} />
{/* <Route path="/shop" exact element={<Shop />} /> */}
{/*<Route path="/applications" exact element={<Applications />} /> */}
<Route path="/socials" exact element={<Socials />} />
<Route path="/about" exact element={<About />} />
{/* <Route path="/contact" exact element={<Contact />} /> */}
</Routes>
<Discord />
<Footer />