Skip to content

Commit

Permalink
활동에 글또 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
shinwonse committed Oct 4, 2024
1 parent 205d5ca commit 0147d76
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 7 additions & 2 deletions src/app/(about)/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ const careers = [
];

const activities = [
{
dateRange: '2024.09 ~ NOW',
department: 'Technical Writer',
englishName: '글또 10기',
koreanName: '글 쓰는 또라이가 세상을 바꾼다',
},
{
dateRange: '2022.12 ~ 2023.02',
department: 'Frontend Developer',
Expand Down Expand Up @@ -45,8 +51,7 @@ function AboutPage() {
<main className={cn('px-6')}>
<section className={cn('flex flex-col items-center py-12')}>
<h1 className={cn('mb-1 text-base sm:text-3xl')}>
안녕하세요!{' '}
<span className={cn('font-bold')}>프론트엔드 개발자 신원세</span>
안녕하세요! <span className={cn('font-bold')}>프론트엔드 개발자 신원세</span>
입니다.
</h1>
<p className={cn('text-sm sm:text-base')}>
Expand Down
5 changes: 1 addition & 4 deletions src/app/components/Carousel/Carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ function Carousel({ className, items }: Props) {
<ShadcnCarousel className={cn(className)}>
<CarouselContent className={cn('-ml-4')}>
{items?.map((item) => (
<CarouselItem
key={item}
className={cn('basis-3/5 pl-4 sm:basis-1/3')}
>
<CarouselItem key={item} className={cn('basis-3/5 pl-4 sm:basis-1/3')}>
{item}
</CarouselItem>
))}
Expand Down

0 comments on commit 0147d76

Please sign in to comment.