-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
332 additions
and
6,405 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import Image from "next/image" | ||
import Link from "next/link" | ||
import { SOCIALMEDIA_LINKS, NAV_LINKS } from "@/lib/constants" | ||
|
||
export function SocialMedia() { | ||
return ( | ||
<> | ||
{ | ||
SOCIALMEDIA_LINKS.map((item) => ( | ||
<li key={item.name}> | ||
<Link | ||
href={item.path} | ||
rel="noreferrer noopener" | ||
target="_blank" | ||
> | ||
<Image | ||
src={item.src} | ||
alt={item.name} | ||
loading="lazy" | ||
width={40} | ||
height={40} | ||
className="block" | ||
/> | ||
</Link> | ||
</li> | ||
)) | ||
} | ||
</> | ||
) | ||
} | ||
|
||
export function NavLinks() { | ||
return ( | ||
<> | ||
{ | ||
NAV_LINKS.map((item) => ( | ||
<li key={item.name} className="relative flex items-center justify-center xs:px-[.5em] ms:px-[.8em] after:absolute after:content-none xs:after:content-[''] after:right-[-4px] after:-translate-x-1/2 after:h-[1em] after:w-[4px] after:bg-secondary-lm"> | ||
<Link | ||
href={item.path} | ||
target="_blank" | ||
className="relative inline-block text-center after:content-[''] after:absolute after:bottom-0 after:left-0 after:w-full after:h-[2.5px] after:bg-secondary-lm after:scale-x-0 after:transform after:origin-bottom-right after:transition-transform hover:after:scale-x-100 hover:after:origin-bottom-left" | ||
> | ||
{item.name} | ||
</Link> | ||
</li> | ||
)) | ||
} | ||
</> | ||
) | ||
} |
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 |
---|---|---|
@@ -0,0 +1,117 @@ | ||
'use client'; | ||
import React from 'react'; | ||
import Image from 'next/image'; | ||
import Link from 'next/link'; | ||
import useMobile from '@/hooks/useMobile'; | ||
import { useSupportDialogStore } from "@/store/useSupportDialog"; | ||
import { SocialMedia, NavLinks } from '@/components/Footer/FooterLinks'; | ||
// import Form | ||
|
||
function Footer({ }) { | ||
const { onOpen } = useSupportDialogStore(); | ||
|
||
const { isMobile } = useMobile(); | ||
const logo = `/images/footer/logoFooter${isMobile ? "M" : "D"}.webp`; | ||
const bgLogo = '/images/footer/footerBackground.webp'; | ||
|
||
const paymentLogo = [ | ||
{ width: 64, height: 56, path: "/images/footer/ico-davivienda.webp" }, | ||
{ width: 64, height: 56, path: "/images/footer/ico-bancolombia.webp" }, | ||
{ width: 64, height: 56, path: "/images/footer/ico-efecty.webp" }, | ||
{ width: 64, height: 56, path: "/images/footer/ico-pse.webp" }, | ||
{ width: 113, height: 56, path: "/images/footer/ico-mp.webp" }, | ||
{ width: 64, height: 56, path: "/images/footer/ico-mastercard.webp" }, | ||
{ width: 64, height: 56, path: "/images/footer/ico-visa.webp" }, | ||
{ width: 64, height: 56, path: "/images/footer/ico-ame.webp" }, | ||
{ width: 64, height: 56, path: "/images/footer/ico-dinners.webp" }, | ||
{ width: 154, height: 56, path: "/images/footer/ico-paypal.webp" }, | ||
] | ||
|
||
return ( | ||
// <footer className="flex flex-col items-center justify-center w-full px-2 md:px-[100px] pt-[32px] md:pt-[100px] pb-[20px] md:pb-[25px] bg-[#1C2023] text-white"> | ||
<footer className="relative flex flex-col items-center justify-center w-full px-[20px] md:px-[100px] pt-[30px] md:pt-[60px] pb-[15px] md:pb-[25px] bg-[#1C2023] text-white"> | ||
<div className='overflow-hidden absolute top-0 left-0 w-full h-full'> | ||
<Image | ||
src={bgLogo} | ||
alt='' | ||
className='aspect-[1920/1111] object-cover block h-full w-full object-center' | ||
width={1920} | ||
height={1111} | ||
> | ||
</Image> | ||
</div> | ||
{/* <div className="flex flex-col md:flex-row justify-between items-center md:items-stretch gap-[32px] md:gap-0 w-full max-w-[1920px] mb-[32px] md:mb-[100px]"> */} | ||
<div className="relative z-10 flex flex-col md:flex-row justify-between items-center md:items-stretch md:gap-0 w-full max-w-[1920px] xl:mb-[60px] lg:mb-[50px] md:mb-[40px]"> | ||
{/* LOGO AND SOCIAL MEDIA */} | ||
<div className="flex"> | ||
{/* <div className="flex flex-col items-center justify-between gap-[32px] xl:pl-[50px] xxxl:pl-[300px] md:gap-[16px]"> */} | ||
<div className="flex flex-col items-center justify-between gap-[25px] md:gap-[16px] xxxl:ml-[100px] pb-[25px]"> | ||
<Image | ||
src={logo} | ||
alt="Actualiza tu carro logo." | ||
className={`aspect-[664/${isMobile ? 99 : 381}] w-[180px] mx-[40px]`} | ||
height={isMobile ? 99 : 381} | ||
width={664} | ||
/> | ||
<nav className='w-full'> | ||
<ul className="flex justify-between"> | ||
<SocialMedia /> | ||
</ul> | ||
</nav> | ||
</div> | ||
{/* <div className="hidden md:block h-[180px] w-[1.5px] mx-[50px] md:mx-[100px] xl:mx-[150px] bg-gradient-to-t from-[#1C2023] via-white to-background-[#1C2023]" /> */} | ||
<div className="hidden md:block h-full min-h-[150px] w-[1.5px] xl:mx-[100px] lg:mx-[60px] md:mx-[40px] bg-gradient-to-t from-[#1C2023] via-white to-background-[#1C2023]" /> | ||
</div> | ||
{/* LINKS, CONTACT AND PAYMENT METHODS */} | ||
{/* <div className="flex flex-1 flex-col items-center justify-between gap-[32px] md:gap-0 xl:pr-[50px]"> */} | ||
<div className="flex flex-1 flex-col items-center justify-between gap-[25px] md:gap-0 pb-[25px]"> | ||
<nav className="w-full xl:px-[10%] lg:mx-[8%] md:px-[5%]"> | ||
{/* <ul className="flex flex-col xs:flex-row items-center justify-between gap-[16px] xs:gap-0 w-full"> */} | ||
<ul className="flex flex-col xs:flex-row items-stretch justify-between gap-[4px] xs:gap-0 md:mt-[40px] mx-auto w-fit"> | ||
<NavLinks /> | ||
<li className='flex items-center justify-center xs:px-[.5em]' onClick={onOpen}> | ||
<button className="relative text-center after:content-[''] after:absolute after:bottom-0 after:left-0 after:w-full after:h-[2.5px] after:bg-secondary-lm after:scale-x-0 after:transform after:origin-bottom-right after:transition-transform hover:after:scale-x-100 hover:after:origin-bottom-left"> | ||
Contacto | ||
</button> | ||
</li> | ||
</ul> | ||
</nav> | ||
<div className="flex flex-wrap justify-center gap-[4px] lg:h-[40px] md:h-[35px]"> | ||
{ | ||
paymentLogo.map((icon) => ( | ||
<Image | ||
key={icon.path} | ||
src={icon.path} | ||
alt='logo' | ||
width={icon.width} | ||
height={icon.height} | ||
className={`aspect-[${icon.width}/${icon.height}] h-full w-auto max-h-[30px] ms:max-h-[40px]`} | ||
> | ||
</Image> | ||
)) | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
<div className=" relative z-10 h-[1.5px] w-full bg-gradient-to-r from-[#1C2023] via-white to-background-[#1C2023]" /> | ||
{/* <div className="relative z-10 w-full max-w-[1920px] h-[1.5px] md:mx-[100px] ms:mx-[50px] bg-white bg-opacity-[.1]" /> */} | ||
{/* <div className="w-full pt-[20px] max-w-[1920px] text-xs text-center"> */} | ||
{/* Footer note */} | ||
<div className="relative z-10 flex flex-col xs:flex-row items-center justify-center gap-[1em] w-full pt-[15px] md:pt-[25px] text-[8px] ms:text-xs text-center"> | ||
<div className='order-2 xs:order-1'> | ||
<span>Made with <span style={{ textShadow: '0 0 0 white' }} className='text-transparent'>💗</span> by <Link href={""} className='underline'>Dium Developers</Link></span> | ||
</div> | ||
<div className="hidden xs:block xs:order-2 aspect-square w-[.4em] h-[.4em] bg-white rounded-full" /> | ||
<div className='order-1 xs:order-3'> | ||
<span>ActualizaTuCarro@Copyright 2024</span> | ||
</div> | ||
<div className="hidden xs:block xs:order-4 aspect-square w-[.4em] h-[.4em] bg-white rounded-full" /> | ||
<div className='order-3 xs:order-5'> | ||
<span>Powered by: <Link href={""} className='underline'>Dium Team Work</Link></span> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
}; | ||
|
||
export default Footer; |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { useEffect, useState } from "react"; | ||
import { SupportDialog } from "."; | ||
|
||
export const DialogProvider = () => { | ||
const [isClient, setIsClient] = useState<boolean>(false); | ||
|
||
useEffect(() => { | ||
setIsClient(true); | ||
}, []); | ||
|
||
if (!isClient) null; | ||
|
||
return ( | ||
<SupportDialog /> | ||
) | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
"use client"; | ||
|
||
import { z } from "zod"; | ||
import { zodResolver } from "@hookform/resolvers/zod"; | ||
import { useForm } from "react-hook-form"; | ||
import { useSupportDialogStore } from "@/store/useSupportDialog"; | ||
import { Button } from "../ui/button"; | ||
import { | ||
Dialog, | ||
DialogContent, | ||
DialogHeader, | ||
DialogTitle, | ||
DialogDescription, | ||
} from "../ui/dialog"; | ||
import { | ||
Form, | ||
FormControl, | ||
FormField, | ||
FormItem, | ||
FormMessage, | ||
} from "../ui/form"; | ||
import { Input } from "../ui/input"; | ||
import { Textarea } from "../ui/textarea"; | ||
|
||
const formSchema = z.object({ | ||
name: z.string().min(2, { message: 'El nombre no es válido' }), | ||
email: z.string().email({ message: 'El correo no es válido' }), | ||
message: z.string().min(30, { message: 'El mensaje es muy corto' }), | ||
}); | ||
|
||
export const SupportDialog = () => { | ||
const { open, onClose } = useSupportDialogStore(); | ||
|
||
const form = useForm<z.infer<typeof formSchema>>({ | ||
resolver: zodResolver(formSchema), | ||
}); | ||
|
||
const onSubmit = (values: z.infer<typeof formSchema>) => { | ||
console.log(values); | ||
}; | ||
|
||
return ( | ||
<Dialog open={open} onOpenChange={onClose}> | ||
<DialogContent className="px-10 py-8"> | ||
<DialogHeader> | ||
<DialogTitle className="text-4xl font-bold mb-2">Contacto</DialogTitle> | ||
<DialogDescription> | ||
¿Tienes preguntas o necesitas ayuda para tu compra? | ||
</DialogDescription> | ||
<DialogDescription> | ||
¡Contáctanos! Nuestro equipo está aquí para asistirte. | ||
</DialogDescription> | ||
</DialogHeader> | ||
<Form {...form}> | ||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8"> | ||
<FormField | ||
control={form.control} | ||
name="name" | ||
render={({ field }) => ( | ||
<FormItem> | ||
<FormControl> | ||
<Input className="bg-rose-100 dark:bg-secondary-dm border-none" placeholder="Nombre" {...field} /> | ||
</FormControl> | ||
|
||
<FormMessage /> | ||
</FormItem> | ||
)} | ||
/> | ||
<FormField | ||
control={form.control} | ||
name="email" | ||
render={({ field }) => ( | ||
<FormItem> | ||
<FormControl> | ||
<Input className="bg-rose-100 dark:bg-secondary-dm border-none" placeholder="Correo" {...field} /> | ||
</FormControl> | ||
<FormMessage /> | ||
</FormItem> | ||
)} | ||
/> | ||
<FormField | ||
control={form.control} | ||
name="message" | ||
render={({ field }) => ( | ||
<FormItem> | ||
<FormControl> | ||
<Textarea className="min-h-[150px] max-h-[270px] bg-rose-100 dark:bg-secondary-dm border-none" placeholder="Mensaje" {...field} /> | ||
</FormControl> | ||
<FormMessage /> | ||
</FormItem> | ||
)} | ||
/> | ||
<Button className="w-full bg-primary-lm py-6 text-base dark:text-white dark:hover:bg-secondary-dm">ENVIAR</Button> | ||
</form> | ||
</Form> | ||
</DialogContent> | ||
</Dialog> | ||
); | ||
}; |
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
Oops, something went wrong.