Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy: Release #302

Merged
merged 2 commits into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,35 @@
<link rel="icon" type="image/svg+xml" href="/src/assets/main_logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<!-- SEO -->
<title>업브렐라(UPbrella) | 공유 우산 플랫폼</title>
<meta name="title" content="업브렐라(UPbrella) | 공유 우산 플랫폼" />
<meta
name="description"
content="지구를 지키는 작은 우산, 업브렐라를 펼쳐주세요! A Better Choice, UPbrella"
/>
<meta
name="keywords"
content="업브렐라, UPbrella, upbrella, Upbrella, 공유 우산 플랫폼, 우산 공유 플랫폼, 공유 우산, 우산, 공유 우산 서비스, 신촌, 연세대학교"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="업브렐라(UPbrella) | 공유 우산 플랫폼" />
<meta property="og:site_name" content="업브렐라(UPbrella) | 공유 우산 플랫폼" />
<meta
property="og:description"
content="지구를 지키는 작은 우산, 업브렐라를 펼쳐주세요! A Better Choice, UPbrella"
/>
<meta property="og:image" content="https://upbrella.co.kr/assets/section3-af1c1a5c.png" />
<meta property="og:url" content="https://upbrella.co.kr/" />
<meta name="twitter:title" content="업브렐라(UPbrella) | 공유 우산 플랫폼" />
<meta
name="twitter:description"
content="지구를 지키는 작은 우산, 업브렐라를 펼쳐주세요! A Better Choice, UPbrella"
/>
<meta name="twitter:image" content="https://upbrella.co.kr/assets/section3-af1c1a5c.png" />

<link rel="canonical" href="https://upbrella.co.kr/" />

<!-- Kakao Map -->
<script
type="text/javascript"
Expand Down
12 changes: 0 additions & 12 deletions src/components/pages/admin/store/UI/StoreModalBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,18 +240,6 @@ const StoreModalContents = ({
</div>
</StoreFormWrapper>

{/* 연락처 */}
<StoreFormWrapper label="자물쇠 비밀번호">
<div className="flex items-center gap-2">
<TextField
placeholder="1234"
value={storeData.password}
name="password"
onChange={onChangeStoreData}
/>
</div>
</StoreFormWrapper>

{/* 연락처 */}
<StoreFormWrapper label="연락처">
<div className="flex items-center gap-2">
Expand Down
3 changes: 0 additions & 3 deletions src/components/pages/admin/store/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const storeInitializer = (res?: TAdminStoreDetail): TStoreParams => {
umbrellaLocation,
contactNumber,
instagramId,
password,
} = res;

return {
Expand All @@ -45,7 +44,6 @@ export const storeInitializer = (res?: TAdminStoreDetail): TStoreParams => {
longitude,
content,
businessHours: [],
password,
} satisfies TStoreParams;
}

Expand All @@ -65,7 +63,6 @@ export const storeInitializer = (res?: TAdminStoreDetail): TStoreParams => {
longitude: null,
content: "",
businessHours: [],
password: "",
} satisfies TStoreParams;
};

Expand Down
3 changes: 1 addition & 2 deletions src/types/admin/StoreTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export type TAdminStoreDetail = {
latitude: number | null;
longitude: number | null;
content: string;
password: string; // 자물쇠 비밀번호
};

export type TStoreBusinessHoursRes = {
Expand Down Expand Up @@ -94,7 +93,7 @@ export type TStoreImageParams = {

export type TStoreTableData = Omit<
TAdminStoreDetail,
"addressDetail" | "latitude" | "longitude" | "password" | "subClassification" | "classification"
"addressDetail" | "latitude" | "longitude" | "subClassification" | "classification"
>;

export type TStoreTableKey = keyof TStoreTableData & "imageUrls";
Expand Down
2 changes: 1 addition & 1 deletion src/utils/SeoMetaTag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const SeoMetaTag = ({
<title>{viewTitle}</title>

{/* basic */}
<meta name="title" content={description} />
<meta name="title" content={viewTitle} />
<meta name="description" content={description} />
<meta name="keywords" content={viewKeywords} />
<meta name="robots" content={robotsContent} />
Expand Down
Loading