|
| 1 | +import React from 'react' |
| 2 | + |
| 3 | +export default function Footer() { |
| 4 | + return ( |
| 5 | + <footer className='bg-color14 pt-12 pb-20 text-color8 font-thin flex flex-col px-10 md:flex-row md:px-8 justify-evenly gap-[5rem] overflow-hidden'> |
| 6 | + <div className='flex flex-col gap-2 text-sm w-24 leading-5'> |
| 7 | + <p className='mb-3 capitalize font-bold'>Monogram</p> |
| 8 | + <p>305 King St. W. Suite 502 Kitchener, ON Canada</p> |
| 9 | + </div> |
| 10 | + |
| 11 | + <div className='flex flex-col gap-2 text-sm'> |
| 12 | + <p className='mb-3 capitalize font-bold'>Quick Links</p> |
| 13 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 14 | + Home |
| 15 | + </a> |
| 16 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 17 | + How it Works |
| 18 | + </a> |
| 19 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 20 | + Shop |
| 21 | + </a> |
| 22 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 23 | + Download |
| 24 | + </a> |
| 25 | + </div> |
| 26 | + |
| 27 | + <div className='flex flex-col gap-2 text-sm'> |
| 28 | + <p className='mb-3 capitalize font-bold'>Help</p> |
| 29 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 30 | + FAQs |
| 31 | + </a> |
| 32 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 33 | + Support Center |
| 34 | + </a> |
| 35 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 36 | + Shipping and Sales |
| 37 | + </a> |
| 38 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 39 | + Palette Support |
| 40 | + </a> |
| 41 | + </div> |
| 42 | + |
| 43 | + <div className='flex flex-col gap-2 text-sm'> |
| 44 | + <p className='mb-3 capitalize font-bold'>Information</p> |
| 45 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 46 | + About Us |
| 47 | + </a> |
| 48 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 49 | + Work with us |
| 50 | + </a> |
| 51 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 52 | + Privacy Policy |
| 53 | + </a> |
| 54 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 55 | + Terms of Use |
| 56 | + </a> |
| 57 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 58 | + Terms of sale |
| 59 | + </a> |
| 60 | + <a href='#' className='hover:text-color10 hover:underline '> |
| 61 | + Press Kit |
| 62 | + </a> |
| 63 | + </div> |
| 64 | + |
| 65 | + <div className='flex flex-col gap-2 text-sm w-[22rem] leading-5'> |
| 66 | + <p className='capitalize font-bold'>SUBSCRIBE TO MONOGRAM</p> |
| 67 | + <p> |
| 68 | + Master productivity with Creative Console and get all the latest |
| 69 | + Monogram news. |
| 70 | + </p> |
| 71 | + <div className='flex gap-5 mt-4'> |
| 72 | + <input |
| 73 | + className='bg-color14 border-2 border-color8 p-1 px-2' |
| 74 | + placeholder='Email Address' |
| 75 | + type='email' |
| 76 | + ></input> |
| 77 | + <button className='bg-color8 text-black p-1 px-5 rounded-md'> |
| 78 | + Submit |
| 79 | + </button> |
| 80 | + </div> |
| 81 | + <button></button> |
| 82 | + <p>© Monogram 2022</p> |
| 83 | + </div> |
| 84 | + </footer> |
| 85 | + ) |
| 86 | +} |
0 commit comments