From 8906d7a970c1c94cfceed391bca09042dbbec931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sof=C3=ADa=20Maturana?= Date: Fri, 24 Apr 2026 13:45:05 -0400 Subject: [PATCH] =?UTF-8?q?feat!:=20agregar=20p=C3=A1gina=20Not=20found?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.css | 1 - src/App.jsx | 18 ++++++++----- src/Navbar.jsx | 9 ++++--- src/components/CardPizza.jsx | 8 +++++- src/pages/Home.jsx | 8 +++--- src/pages/Login.jsx | 40 ++++++++++++++++++++++++++++ src/pages/NotFound.jsx | 21 +++++++++++++++ src/pages/Pizza.jsx | 45 ++++++++++++++++--------------- src/pages/Register.jsx | 51 ++++++++++++++++++++++++++++++++++++ 9 files changed, 164 insertions(+), 37 deletions(-) create mode 100644 src/pages/Login.jsx create mode 100644 src/pages/NotFound.jsx create mode 100644 src/pages/Register.jsx diff --git a/src/App.css b/src/App.css index 8b13789..e69de29 100644 --- a/src/App.css +++ b/src/App.css @@ -1 +0,0 @@ - diff --git a/src/App.jsx b/src/App.jsx index ab32059..bf50e05 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,11 +1,13 @@ -import { useState } from "react"; -import heroImg from "./assets/hero.png"; -import Cart from "./pages/Cart"; -import Footer from "./Footer"; -import Home from "./pages/Home"; -import Navbar from "./Navbar"; import { Route, Routes } from "react-router-dom"; +import Footer from "./Footer"; +import Navbar from "./Navbar"; +import Cart from "./pages/Cart"; +import Home from "./pages/Home"; +import Login from "./pages/Login"; +import Register from "./pages/Register"; import "./App.css"; +import NotFound from "./pages/NotFound"; +import Pizza from "./pages/Pizza"; function App() { return ( @@ -14,7 +16,11 @@ function App() {
} /> + } /> + } /> + } /> } /> + } />