Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jungjjeong committed Nov 18, 2024
1 parent 3e9c284 commit ecd9c9d
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 6 deletions.
12 changes: 6 additions & 6 deletions public/sitemap-0.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>https://www.depromeet.com</loc><lastmod>2024-11-17T07:04:27.144Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/about</loc><lastmod>2024-11-17T07:04:27.144Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/apply</loc><lastmod>2024-11-17T07:04:27.144Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/blog</loc><lastmod>2024-11-17T07:04:27.144Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/project</loc><lastmod>2024-11-17T07:04:27.144Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/recruit</loc><lastmod>2024-11-17T07:04:27.144Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com</loc><lastmod>2024-11-18T15:51:10.820Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/about</loc><lastmod>2024-11-18T15:51:10.820Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/apply</loc><lastmod>2024-11-18T15:51:10.820Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/blog</loc><lastmod>2024-11-18T15:51:10.820Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/project</loc><lastmod>2024-11-18T15:51:10.820Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.depromeet.com/recruit</loc><lastmod>2024-11-18T15:51:10.820Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
</urlset>
50 changes: 50 additions & 0 deletions src/constant/offline.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { colors } from '~/styles/colors';

export const REGULARS_SESSIONS = [
{
title: '오리엔테이션',
Expand Down Expand Up @@ -70,3 +72,51 @@ export const ACTIVITIES = [
img: '/images/offline-session/final.png',
},
];

/**
* @deprecated 삭제 예정
*/
export const OFFLINE_SESSIONS = [
{
title: 'ORIENTATION',
subTitle: '오리엔테이션',
description: '디프만의 첫 시작, 서로를 알아갈 수 있는 오리엔테이션에 모두가 함께 해요.',
img: '/images/offline-session/orientation.png',
titleTextColor: colors.pink,
},
{
title: 'NETWORKING DAY',
subTitle: '네트워킹 데이',
description: '다른 팀, 직군의 멤버들을 만나요. TMI부터 커리어 토크까지 친해지는 시간을 가져요.',
img: '/images/offline-session/networking.png',
titleTextColor: colors.blue,
},
{
title: 'USABILITY TEST',
subTitle: '사용성 테스트',
description: '사용성 테스트를 통해 문제를 발견하고 개선하여 더 가치있는 서비스를 만들어요.',
img: '/images/offline-session/usability.png',
titleTextColor: colors.green,
},
{
title: 'MIDTERM ANNOUNCE',
subTitle: '중간발표',
description: '각 팀의 진행 상황을 공유하며 실질적인 피드백을 주고 받을 수 있어요.',
img: '/images/offline-session/midterm.png',
titleTextColor: colors.blue,
},
{
title: 'LAUNCHING DAY',
subTitle: '런칭데이',
description: '런칭된 서비스를 팀 부스에서 공개해요. 모든 팀의 서비스를 사용해볼 수 있어요.',
img: '/images/offline-session/launching.png',
titleTextColor: colors.pink,
},
{
title: 'FINAL ANNOUNCE',
subTitle: '최종발표',
description: '서비스의 성과와 그 과정을 공유 및 회고하며 프로젝트를 마무리해요.',
img: '/images/offline-session/final.png',
titleTextColor: colors.purple,
},
];

0 comments on commit ecd9c9d

Please sign in to comment.