-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #225 from pedrolivaresanchez/remove-phone-number
feat(call-center): remove phone number
- Loading branch information
Showing
3 changed files
with
5 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,6 @@ import { AlertCircle, Clock, Cross, Heart, MapPin, Navigation, Package, Thermome | |
|
||
import PhoneNumberDialog from '@/components/auth/PhoneNumberDialog'; | ||
|
||
import Image from 'next/image'; | ||
import { CallCenterLink } from '@/components/CallCenterLink'; | ||
|
||
export default async function Home() { | ||
const emergencyNumbers = [ | ||
{ name: 'Emergencias', number: '112', description: 'Para situaciones de peligro inmediato' }, | ||
|
@@ -187,16 +184,8 @@ export default async function Home() { | |
<h2 className="text-xl font-bold text-red-800 mb-2">PARA PERSONAS CON DIFICULTADES TECNICAS</h2> | ||
<div className="flex flex-col text-red-700 space-y-2"> | ||
<p className="font-bold"> | ||
AVISO IMPORTANTE: Esta información es sólo para personas que tengan dificultades técnicas a la hora de | ||
pedir ayuda. | ||
</p> | ||
<p className="mb-2"> | ||
Hemos habilitado el número <CallCenterLink /> para facilitar la petición de ayuda a aquellas personas | ||
que encuentren complicado usar la página web.{' '} | ||
</p> | ||
<p className="font-bold"> | ||
¡Importante! No saturéis el teléfono si podéis usar la página web, por favor. Si tenéis alguna duda | ||
sobre la página web o deseáis aportar nuevas ideas, por favor escríbenos a{' '} | ||
¡Importante! Si tenéis alguna duda sobre la página web o deseáis aportar nuevas ideas, por favor | ||
escríbenos a{' '} | ||
<a className="text-blue-600 hover:text-blue-800" href="mailto:[email protected]"> | ||
[email protected] | ||
</a> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,23 @@ | ||
import { AlertTriangle } from 'lucide-react'; | ||
import Image from 'next/image'; | ||
import { CallCenterLink } from '@/components/CallCenterLink'; | ||
import CreateHelpRequest from '@/components/HelpRequests/CreateHelpRequest'; | ||
|
||
export default function SolicitarAyuda() { | ||
return ( | ||
<div className="space-y-6"> | ||
{/* Banner de emergencia */} | ||
Banner de emergencia | ||
<div className="bg-red-100 border-l-4 border-red-500 p-4 rounded"> | ||
<div className="flex items-start"> | ||
<AlertTriangle className="h-5 w-5 text-red-500 mt-0.5 mr-2" /> | ||
<div className="space-y-4"> | ||
<h2 className="text-red-800 font-bold">PARA PERSONAS CON DIFICULTADES TECNICAS</h2> | ||
<div className="flex flex-col text-red-700 space-y-2"> | ||
<p className="font-bold"> | ||
AVISO IMPORTANTE: Esta información es sólo para personas que tengan dificultades técnicas a la hora de | ||
pedir ayuda. | ||
</p> | ||
<p className="mb-2"> | ||
Hemos habilitado el número <CallCenterLink /> para facilitar la petición de ayuda a aquellas personas | ||
que encuentren complicado usar la página web.{' '} | ||
</p> | ||
<p className="font-bold"> | ||
¡Importante! No saturéis el teléfono si podéis usar la página web, por favor. Si tenéis alguna duda | ||
sobre la página web o deseas aportar nuevas ideas, por favor escríbenos a{' '} | ||
¡Importante! Si tenéis alguna duda sobre la página web o deseas aportar nuevas ideas, por favor | ||
escríbenos a{' '} | ||
<a className="text-blue-600 hover:text-blue-800" href="mailto:[email protected]"> | ||
[email protected] | ||
</a> | ||
</p> | ||
<p>También puedes contactar con nosotros a través de:</p> | ||
<a className="text-blue-600 hover:text-blue-800 flex space-x-2" href="https://wa.me/34626675591"> | ||
<Image | ||
src={ | ||
'https://upload.wikimedia.org/wikipedia/commons/a/a7/2062095_application_chat_communication_logo_whatsapp_icon.svg' | ||
} | ||
alt="Whatsapp icon" | ||
height={20} | ||
width={20} | ||
/> | ||
<span className="font-semibold">WhatsApp</span> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
This file was deleted.
Oops, something went wrong.