Skip to content
Open
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
7 changes: 6 additions & 1 deletion app/(ui)/(welcome)/welcome/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ function Top() {
// Content 컴포넌트: 콘텐츠 섹션을 정의합니다.
function Content() {
const { t } = useLingui();
const [appUrl, setAppUrl] = useState('https://otu.ai');

useEffect(() => {
setAppUrl(window.location.origin);
}, []);
const accordionStyle = {
boxShadow: 'none',
margin: 0,
Expand Down Expand Up @@ -243,7 +248,7 @@ function Content() {
opentutorials.org
</a>
와 메모 서비스{' '}
<a className="underline" href={getAppUrl()}>
<a className="underline" href={appUrl}>
OTU
</a>{' '}
등이 있습니다.
Expand Down
Loading