diff --git a/src/app/page.tsx b/src/app/page.tsx index 080c0cd..e16bf0a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,7 @@ import BrandsCarousel from "@/components/BrandsCarousel"; import { Reviews } from "@/components/Reviews"; import { PaymentMethods } from '@/components/PaymentMethods' import { ReviewsSkeleton } from "@/components/Reviews/ReviewsSkeleton"; +import { WhatsAppButton } from '@/components/WhatsAppButton' import { Suspense } from "react"; export default function Home() { @@ -27,6 +28,7 @@ export default function Home() { + ) } diff --git a/src/components/WhatsAppButton/index.tsx b/src/components/WhatsAppButton/index.tsx new file mode 100644 index 0000000..d1af1a8 --- /dev/null +++ b/src/components/WhatsAppButton/index.tsx @@ -0,0 +1,12 @@ +import Link from "next/link"; +import { MdOutlineWhatsapp } from "react-icons/md"; + +export const WhatsAppButton = () => { + return ( +
+ + + +
+ ); +};