Conversation
There was a problem hiding this comment.
Code Review
This pull request enhances the application's SEO by adding comprehensive meta tags to the main HTML file and replaces the email waitlist functionality with a direct "Start" button that navigates to the login page. Correspondingly, unused hooks and components related to the waitlist have been removed, and various layout spacings have been adjusted. Feedback focuses on improving the reliability of social media previews by using absolute image URLs, ensuring the new button layout is responsive on larger screens, and preventing potential content clipping by using minimum height instead of a fixed viewport height.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📝 요약 (Summary)
index.html에 추가하고, 랜딩 페이지의 이메일 입력부를 제거했습니다.✅ 주요 변경 사항 (Key Changes)
index.html에 메인 페이지 기준 기본 SEO 메타를 추가했습니다.SendEmailSection,useSendEmail,useWaitList를 제거했습니다.시작하기버튼을 추가했습니다.💻 상세 구현 내용 (Implementation Details)
1. 메인 페이지 기본 SEO 메타 추가
index.html에 메인 페이지 기준으로 정적 메타를 추가했습니다.titledescriptionog:titleog:descriptionog:imageog:image:typeog:typeog:localeog:site_nametwitter:titletwitter:descriptiontwitter:imagetwitter:card이번 작업에서는 메인 페이지 기준 기본값만 먼저 반영했습니다.
2. Google Search Console 사이트 소유권 인증 파일 추가
Google Search Console의 HTML 파일 업로드 방식으로 사이트 소유권을 인증할 수 있도록,
인증용 HTML 파일을
public디렉터리에 추가했습니다.3. 랜딩 페이지 이메일 입력부 제거
메인 페이지에서 사용하던 이메일 입력 섹션을 제거했습니다.
MainPage에서SendEmailSection제거4. 관련 미사용 코드 정리
이메일 입력부 제거 이후 더 이상 사용하지 않는 코드를 함께 정리했습니다.
SendEmailSection.tsx삭제useSendEmail.ts삭제useWaitList.ts삭제index.tsexport 정리5. 메인 페이지 CTA 및 간격 조정
시작하기버튼을 추가했습니다.🚨 트러블 슈팅 (Trouble Shooting)
페이지 단에서
title,description,canonical을 별도로 보정하는 구조도 검토했지만,이번 PR에서는 메인 페이지 기준 정적 메타를 먼저 적용하는 범위로 정리했습니다.
index.html기준의 정적 SEO 메타만 반영했습니다.📸 스크린샷 (Screenshots)
#️⃣ 관련 이슈 (Related Issues)