export const basicTimelineData = [
{
dotClass : 'primary',
date : '2 Feb 2024',
time : '7:00 AM',
title : 'Conference with client',
desc : 'At noon today, there will be a meeting with a UK client.',
},
{
dotClass : 'secondary',
date : '22 March 2024',
time : '3:45 PM',
title : 'Discussion with marketing Team',
desc : 'discussion with the marketing staff on the success of the most recent project',
},
{
dotClass : 'success',
date : '16 May 2024',
time : '1:22 AM',
title : 'Invest in a new hosting plan',
desc : 'today at 2 pm AM, purchase a new hosting package as agreed upon with the management team.',
},
{
dotClass : 'warning',
date : '23 Nov 2024',
time : '6:56 AM',
title : 'Discussion with designer team',
desc : 'discussion with the designer employee on the success of the most recent project.',
},
{
dotClass : 'info',
date : '12 Dec 2024',
time : '12:05 AM',
title : 'Discussion with new theme launch ',
desc : 'discussion with the how many themes made in our portfolio.',
},
{
dotClass : 'danger',
date : '02 Jan 2024',
time : '6:56 AM',
title : 'Purchase new chairs for office ',
desc : 'online purchase new chairs for office',
},
]
import { Component } from '@angular/core';
import * as Data from '../../../../shared/data/data/bonus-ui/timeline';
@Component({
selector: 'app-basic-timeline',
imports: [],
templateUrl: './basic-timeline.html',
styleUrls: ['./basic-timeline.scss']
})
export class BasicTimeline {
public basicTimelineData = Data.basicTimelineData;
}