Skip to content

Commit

Permalink
refactor: 도메인 이전 today -> site
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Dec 8, 2024
1 parent 30b78c7 commit 80736e0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

- [iOS](https://apps.apple.com/kr/app/10%EB%B6%84%EB%A7%8C-10mm-10%EB%B6%84%EC%9C%BC%EB%A1%9C-%EC%8B%9C%EC%9E%91%ED%95%98%EB%8A%94-%EC%8A%B5%EA%B4%80-%ED%98%95%EC%84%B1/id6475635740)
- [AOS](https://play.google.com/store/apps/details?id=com.tenminuteapp)
- [WEB](https://10mm.today/)
- [WEB](https://10mm.site/)
# 🖥️ Tech
## 🛠️ Tech Stack

Expand Down
5 changes: 5 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ const nextConfig = {
hostname: 'image.10mm.today',
port: '',
},
{
protocol: 'https',
hostname: 'image.10mm.site',
port: '',
},
],
},
};
Expand Down
4 changes: 2 additions & 2 deletions src/components/SEO/SEO.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ interface Props {
keywords?: string;
}

const BASE_URL = 'https://10mm.today';
const DEFAULT_OG_IMAGE = 'https://www.10mm.today/og-image.png';
const BASE_URL = 'https://10mm.site';
const DEFAULT_OG_IMAGE = 'https://www.10mm.site/og-image.png';

/**
* @description next/head를 사용하는 SEO 컴포넌트입니다. title, og, twitter 등 SEO에 필요한 태그를 렌더링 합니다.
Expand Down
4 changes: 2 additions & 2 deletions src/pages/_document.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ export const metadata = {
keywords: '10mm, 10분만, 10분, 10MM, 10mm, 하루 10분, 10분 단위, 생환습관',
openGraph: {
type: 'website',
url: 'https://www.10mm.today',
url: 'https://www.10mm.site',
title: '10MM',
description: '당신의 인생을 바꿀 10분',
siteName: '10MM',
images: [
{
url: 'https://www.10mm.today/og-image.png',
url: 'https://www.10mm.site/og-image.png',
},
],
},
Expand Down
14 changes: 7 additions & 7 deletions src/pages/onboarding/onboarding.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,43 +23,43 @@ export const RECOMMENDATION_REAL = [
{
id: 4,
nickname: '도모',
profileImageUrl: 'https://image.10mm.today/prod/member_profile/4/38e6a5a9-a547-4051-95ea-cc112feabe21.jpeg',
profileImageUrl: 'https://image.10mm.site/prod/member_profile/4/38e6a5a9-a547-4051-95ea-cc112feabe21.jpeg',
tags: ['#기타연주', '#감사일기', '#개발자'],
},
{
id: 2,
nickname: 'ybchar',
profileImageUrl: 'https://image.10mm.today/prod/member_profile/2/2443459a-94b5-4048-98df-5fe356378a62.jpeg',
profileImageUrl: 'https://image.10mm.site/prod/member_profile/2/2443459a-94b5-4048-98df-5fe356378a62.jpeg',
tags: ['#개발', '#산책하기'],
},
{
id: 73,
nickname: '안암위스키남',
profileImageUrl: 'https://image.10mm.today/prod/member_profile/73/a362d028-ad4c-49aa-9912-e32bc041793d.jpeg',
profileImageUrl: 'https://image.10mm.site/prod/member_profile/73/a362d028-ad4c-49aa-9912-e32bc041793d.jpeg',
tags: ['#공부', '#헬스', '#디자인'],
},
{
id: 1,
nickname: '우보틀',
profileImageUrl: 'https://image.10mm.today/prod/member_profile/1/b83aeeb8-9acd-4915-aee4-ea87ec142b3b.jpeg',
profileImageUrl: 'https://image.10mm.site/prod/member_profile/1/b83aeeb8-9acd-4915-aee4-ea87ec142b3b.jpeg',
tags: ['#카페출근', '#출근독서', '#스타벅스'],
},
{
id: 8,
nickname: '수미칩',
profileImageUrl: 'https://image.10mm.today/prod/member_profile/8/70d5cb9b-95ff-406f-93bd-9a68a2d8d5b9.png',
profileImageUrl: 'https://image.10mm.site/prod/member_profile/8/70d5cb9b-95ff-406f-93bd-9a68a2d8d5b9.png',
tags: ['#운동', '#뜨개질', '#폭주기관차'],
},
{
id: 7,
nickname: '유우비트',
profileImageUrl: 'https://image.10mm.today/prod/member_profile/7/9fbdf25a-101e-4fb5-9956-6030e7407382.jpeg',
profileImageUrl: 'https://image.10mm.site/prod/member_profile/7/9fbdf25a-101e-4fb5-9956-6030e7407382.jpeg',
tags: ['#운동', '#헬스', '#영화'],
},
{
id: 9,
nickname: '집가고시퍼',
profileImageUrl: 'https://image.10mm.today/prod/member_profile/9/722d875d-eff0-498d-9644-e1c8eb514414.jpeg',
profileImageUrl: 'https://image.10mm.site/prod/member_profile/9/722d875d-eff0-498d-9644-e1c8eb514414.jpeg',
tags: ['#디자인', '#회의'],
},
];

0 comments on commit 80736e0

Please sign in to comment.