File size: 995 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import { faMobileAlt, faMapMarkedAlt } from '@fortawesome/free-solid-svg-icons';
import { faBuffer } from '@fortawesome/free-brands-svg-icons'
export const usefulLink = [
{name: 'Home', id: 1},
{name: 'About us', id: 2},
{name: 'Services', id: 3},
{name: 'Team', id: 4},
{name: 'Blog', id: 5}
]
export const ourServices = [
{name: 'Strategy & Research', id: 6},
{name: 'Web Design', id: 7},
{name: 'Web Development', id: 8},
{name: 'Digital Marketing', id: 9},
{name: 'Graphic Design', id: 10}
]
export const otherLinks = [
{name: 'FAQ', id: 11},
{name: 'Portfolio', id: 12},
{name: 'Privacy Policy', id: 13},
{name: 'Terms & Conditions', id: 14},
{name: 'Support', id: 15},
]
export const footerInfo = [
{icon: faBuffer, info1: 'EASY CONSULTING', id: 1},
{icon: faMobileAlt, info1: '+13322176301', info2: 'ujjalzaman@gmail.com', id: 2},
{icon: faMapMarkedAlt, info1: 'bronx,new york, USA', info2: 'Nevada,USA', id: 3}
]; |