import { NavLink } from '@/types';

export const MENU: Array<NavLink> = [
  {
    id: 0,
    title: 'Home',
    link: '/',
  },
  {
    id: 1,
    title: 'About me',
    link: '/aboutme',
  },
  {
    id: 2,
    title: 'Real Estate',
    link: '/realestate',
  },
  {
    id: 3,
    title: 'Projects',
    link: '/projects',
  },
  {
    id: 4,
    title: 'Bus. Development',
    link: '/busdevelopment',
  },
  {
    id: 5,
    title: 'Blog',
    link: '/blog',
  },
  {
    id: 6,
    title: 'News',
    link: '/news',
  },
  {
    id: 7,
    title: 'Contact',
    link: '/contactinfo',
  },
];
