From c2840e928d1a4f561710ce60c83ca739aa1ef95a Mon Sep 17 00:00:00 2001 From: naticampiglia <99177631+naticampiglia@users.noreply.github.com> Date: Wed, 31 Jan 2024 16:12:45 +0800 Subject: [PATCH] Footer --- src/components/footer.tsx | 78 ++++++++++++++++++----------------- src/components/talk-to-us.tsx | 6 +-- src/custom.d.ts | 10 +++++ src/styles/button.scss | 1 + src/styles/styles.scss | 31 +++++++++++++- tsconfig.json | 2 +- 6 files changed, 86 insertions(+), 42 deletions(-) create mode 100644 src/custom.d.ts diff --git a/src/components/footer.tsx b/src/components/footer.tsx index 27dc1c1..afb9012 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -1,47 +1,51 @@ -import React from "react"; +import React from 'react'; const Footer = () => { const social = [ - { name: "Instagram", href: "#" }, - { name: "Dribbble", href: "#" }, - { name: "Behance", href: "#" }, - { name: "Twitter", href: "#" }, - { name: "Facebook", href: "#" }, - { name: "YouTube", href: "#" }, + { name: 'Instagram', href: '#' }, + { name: 'Dribbble', href: '#' }, + { name: 'Behance', href: '#' }, + { name: 'Twitter', href: '#' }, + { name: 'Facebook', href: '#' }, + { name: 'YouTube', href: '#' }, ]; return ( -