feat: refactor data structures and interfaces for better organization
This commit is contained in:
@@ -3,37 +3,6 @@ import { aboutProps } from '../data/experienceData';
|
||||
|
||||
import style from '@styles/About.module.scss';
|
||||
|
||||
export interface AboutProps {
|
||||
coreValues: CoreValue[];
|
||||
technicalArsenal: TechnicalArsenal[];
|
||||
professionalJourney: ProfessionalJourney[];
|
||||
testimonials: Testimonial[];
|
||||
}
|
||||
|
||||
export interface CoreValue {
|
||||
title: string;
|
||||
description: string;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
export interface ProfessionalJourney {
|
||||
title: string;
|
||||
description: string;
|
||||
duration: string;
|
||||
}
|
||||
|
||||
export interface TechnicalArsenal {
|
||||
title: string;
|
||||
icon: string;
|
||||
skills: string[];
|
||||
}
|
||||
|
||||
export interface Testimonial {
|
||||
content: string;
|
||||
author: string;
|
||||
position: string;
|
||||
}
|
||||
|
||||
export const About = () => {
|
||||
const data = aboutProps;
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user