Skip to content

Commit

Permalink
cambiado nombre de la aplicacion en el navegador
Browse files Browse the repository at this point in the history
  • Loading branch information
yagonavajas committed Mar 25, 2024
1 parent 2317287 commit 53f4468
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions webapp/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"short_name": "WIQ",
"name": "WIQ 04 d ASW ",
"icons": [
{
"src": "favicon.ico",
Expand Down
7 changes: 6 additions & 1 deletion webapp/src/App.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import React, { useEffect } from 'react'
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import Layout from './components/Layout'; // Asegúrate de importar el nuevo componente Layout
import Home from './components/pages/Home';
Expand All @@ -12,7 +12,12 @@ import AboutUS from "./components/pages/AboutUS";
import Error404Page from "./components/pages/Error404Page";

function App() {
useEffect(() => {
document.title = "WIQ"; // Titulo de la paginma
}, []);

return (

<AuthProvider> {/* Envolver con AuthProvider */}
<Router>
<Routes>
Expand Down

0 comments on commit 53f4468

Please sign in to comment.