Some checks failed
Main Branch / Run Prettier check (push) Has been cancelled
Main Branch / Run TypeScript check (push) Has been cancelled
Main Branch / Run Astro check (push) Has been cancelled
Main Branch / Run Percy check (push) Has been cancelled
Main Branch / Create release (push) Has been cancelled
Main Branch / Deploy to Netlify (push) Has been cancelled
Main Branch / Run Lighthouse check (push) Has been cancelled
44 lines
2.4 KiB
TypeScript
44 lines
2.4 KiB
TypeScript
import type { MainSection } from '@/types/sections/main-section.types';
|
||
import type { ReadonlyDeep } from 'type-fest';
|
||
import { facebook, github, linkedin, twitter, website } from '../helpers/links';
|
||
|
||
const mainSectionData = {
|
||
config: {
|
||
icon: 'fa6-solid:user',
|
||
title: 'Profile',
|
||
slug: 'profile',
|
||
visible: true,
|
||
},
|
||
image: import('@/assets/my-image.jpeg'),
|
||
fullName: 'Jay Lee',
|
||
role: 'Software Engineer',
|
||
details: [
|
||
// { label: 'Phone', value: '605 475 6961', url: 'tel:605 475 6961' },
|
||
{ label: 'Location', value: 'San Francisco, CA' },
|
||
{ label: 'Email', value: '✉️', url: 'https://go.juyung.com/email' },
|
||
// { label: 'Salary range', value: '18 000 - 25 000 PLN' },
|
||
],
|
||
pdfDetails: [
|
||
// { label: 'Phone', value: '605 475 6961' },
|
||
// { label: 'Email', value: 'mark.freeman.dev@gmail.com' },
|
||
{ label: 'Website', value: 'juyung.com', url: 'https://juyung.com', fullRow: true },
|
||
{ label: 'GitHub', value: 'git.juyung.com', url: 'https://git.juyung.com' },
|
||
{ label: 'LinkedIn', value: 'job.juyung.com', url: 'https://job.juyung.com' },
|
||
],
|
||
description: `I’m a software engineer. Previously, I worked as a web accessibility developer and taught Java programming. I have a Bachelor's in Computer Science and am currently pursuing a Master’s in Aerospace Engineering.`,
|
||
// 'Lorem ipsum dolor sit amet, consectetur **adipiscing elit**. In sodales ac dui at *vestibulum*. In condimentum metus id dui tincidunt, in blandit mi [vehicula](/). Nulla lacinia, erat sit amet elementum vulputate, lectus mauris volutpat mi, vitae accumsan metus elit ut nunc. Vestibulum lacinia enim eget eros fermentum scelerisque. Proin augue leo, posuere ut imperdiet vitae, fermentum eu ipsum. Sed sed neque sagittis, posuere urna nec, commodo leo. Pellentesque posuere justo vitae massa volutpat maximus.',
|
||
tags: [], //[{ name: 'Open for freelance' }, { name: 'Available for mentoring' }, { name: 'Working on side project' }],
|
||
// action: {
|
||
// label: 'Download Resume',
|
||
// url: '/cv.pdf',
|
||
// downloadedFileName: 'Resume-Juyoung.pdf',
|
||
// },
|
||
links: [
|
||
/*facebook({ url: '#' }),*/
|
||
website({ url: 'https://juyung.com' }),
|
||
github({ url: 'https://git.juyung.com' }),
|
||
linkedin({ url: 'https://job.juyung.com' }),
|
||
], // twitter({ url: '#' })],
|
||
} as const satisfies ReadonlyDeep<MainSection>;
|
||
|
||
export default mainSectionData;
|