Getting started
UI
W.Feature
Widget
The Timeline component provides a structured way to display chronological or sequential events, making it ideal for resumes, project milestones, or historical overviews. Perfect for creating professional timelines or presenting any series of events in a clean and engaging format.
Graphic Designer
ABC Design Studio, New York, NY
2021 - Present
Collaborate with clients to understand design requirements and objectives.
Develop branding solutions, including logos, color palettes, and brand guidelines.
Design marketing materials such as brochures, posters, and digital assets.
Create visually appealing user interfaces for websites and applications.
Junior Graphic Designer
XYZ Creative Agency, Los Angeles, CA
2018 - 2021
Assisted senior designers in creating design concepts and visual assets.
Contributed to the development of brand identities and marketing collateral.
Collaborated with the marketing team to ensure consistent design across campaigns.
Gained hands-on experience in various design software and tools.
---
import { Timeline } from '@yatoday/astro-ui/astro';
---
<Timeline
items={[
{
title: 'Graphic Designer <br /> <span class="font-normal">ABC Design Studio, New York, NY</span> <br /> <span class="text-sm font-normal">2021 - Present</span>',
description: `Collaborate with clients to understand design requirements and objectives. <br /> Develop branding solutions, including logos, color palettes, and brand guidelines. <br /> Design marketing materials such as brochures, posters, and digital assets. <br /> Create visually appealing user interfaces for websites and applications.`,
icon: 'tabler:briefcase',
},
{
title: 'Junior Graphic Designer <br /> <span class="font-normal">XYZ Creative Agency, Los Angeles, CA</span> <br /> <span class="text-sm font-normal">2018 - 2021</span>',
description: `Assisted senior designers in creating design concepts and visual assets. <br /> Contributed to the development of brand identities and marketing collateral. <br /> Collaborated with the marketing team to ensure consistent design across campaigns. <br /> Gained hands-on experience in various design software and tools.`,
icon: 'tabler:briefcase',
},
]}
/>
Prop | Type | Default | Description |
---|---|---|---|
items | Array | [] | Array of Item items |
defaultIcon | string | - | The name of the default icon that will be applied to all list items. |
classes.container | string | - | - |
classes.panel | string | - | - |
classes.title | string | - | - |
classes.description | string | - | - |
classes.icon | string | text-primary dark:text-slate-200 border-primary | - |