2 Commitit 8a84c72b57 ... b5b6d148a6

Tekijä SHA1 Viesti Päivämäärä
  yadid rosell b5b6d148a6 se quito el console log 4 kuukautta sitten
  yadid rosell be69618391 se corrigieron las rutas de las imagenes 4 kuukautta sitten
3 muutettua tiedostoa jossa 6 lisäystä ja 8 poistoa
  1. 5 5
      src/layouts/Layout.astro
  2. 1 1
      src/pages/Nosotros/index.astro
  3. 0 2
      src/services/httpService.ts

+ 5 - 5
src/layouts/Layout.astro

@@ -23,7 +23,7 @@ const { title, ogTitle, ogImage, ogUrl, ogDescription } = Astro.props;
     <meta property="og:image" content={ogImage} />
     <meta property="og:url" content={ogUrl} />
     <meta property="og:description" content={ogDescription} />
-    <link rel="icon" type="image/ico+xml" href="/public/favicon.ico" />
+    <link rel="icon" type="image/ico+xml" href="/favicon.ico" />
     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css" integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
     <meta name="generator" content={Astro.generator} />
     <title>{title}</title>
@@ -31,7 +31,7 @@ const { title, ogTitle, ogImage, ogUrl, ogDescription } = Astro.props;
   <body class="bg-amber-50">
    <header>
     <nav class="flex w-full h-16 justify-center">
-        <a href="/"><img src="/public/img/logo oliva mia sin fondo.png" class="mt-4 h-16 w-56" alt="Logo Oliva Mia"></a>
+        <a href="/"><img src="/img/logo oliva mia sin fondo.png" class="mt-4 h-16 w-56" alt="Logo Oliva Mia"></a>
         <ul class="flex space-x-6 text-base space-y-10 font-sans text-slate-800 md:space-x-16 md:text-xl">
            <li></li>
             <li class="text-slate-800 hover:text-gray-600"><a href="/Menu/">Menú</a></li>
@@ -68,7 +68,7 @@ const { title, ogTitle, ogImage, ogUrl, ogDescription } = Astro.props;
 
       <div class="grid grid-cols-3 gap-4 items-center">
 
-        <div class="text-white text-lg">
+        <div class="text-white text-lg mx-24">
           <ul class="space-y-2">
             <li class="underline underline-offset-4 hover:ease-out transition-all duration-500 hover:scale-105 hover:no-underline">
               <a href="Nosotros/">Nosotros</a>
@@ -87,11 +87,11 @@ const { title, ogTitle, ogImage, ogUrl, ogDescription } = Astro.props;
     
 
         <div class="flex justify-center">
-          <img src="/public/img/LogoOlivaMiaBlanco.png" alt="Logo Oliva Mia" class="w-48 h-32">
+          <img src="/img/LogoOlivaMiaBlanco.png" alt="Logo Oliva Mia" class="w-52 h-36">
         </div>
     
 
-        <div class="text-white text-lg flex justify-end">
+        <div class="text-white text-lg flex justify-end mx-24">
           <ul class="space-y-2">
             <li class="underline underline-offset-4 hover:ease-out transition-all duration-500 hover:scale-105 hover:no-underline">
               <a href="TerminosCondiciones/">Términos y condiciones</a>

+ 1 - 1
src/pages/Nosotros/index.astro

@@ -79,7 +79,7 @@ import Layout from "../../layouts/Layout.astro";
               <p class="font-bold text-2xl text-slate-800">80+ Empleados</p>
             </div>
             <div class="flex flex-col items-center text-center space-y-10">
-              <img src="/img/clientes.png" alt="Clientes" class="w-60 h-56">              
+              <img src="/img/Clientes.png" alt="Clientes" class="w-60 h-56">              
               <p class="font-bold text-2xl text-slate-800">20,000+ Clientes</p>
             </div>
           </div>

+ 0 - 2
src/services/httpService.ts

@@ -138,8 +138,6 @@ export class HttpService implements IHttpService {
       method: "GET",
       headers: HttpService.DEFAULT_HEADERS(),
     });
-
-    console.log("response", _response);
     const response = (await _response.json()) as DefaultResponse<T>;
 
     return {