Skip to content
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
1 change: 0 additions & 1 deletion public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url><loc>https://obatlog.com/</loc><changefreq>weekly</changefreq><priority>1</priority></url>
<url><loc>https://obatlog.com/login/</loc><changefreq>monthly</changefreq><priority>0.8</priority></url>
<url><loc>https://obatlog.com/blog/</loc><changefreq>weekly</changefreq><priority>0.8</priority></url>
<url><loc>https://obatlog.com/blog/getting-started/</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://obatlog.com/blog/notification-setup/</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ChangelogPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function ChangelogPage() {

return (
<div className="max-w-lg mx-auto px-4 py-6 space-y-6">
<a href="/settings" className="text-sm text-gray-400 hover:text-gray-600">
<a href="/settings/" className="text-sm text-gray-400 hover:text-gray-600">
{t('legal.back' as any, lang)}
</a>
<h1 className="text-xl font-bold text-gray-800">
Expand Down
2 changes: 1 addition & 1 deletion src/components/DemoBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function DemoBanner({ expiresAtSeconds, isPC }: DemoBannerProps)
<span className="text-amber-600">{remainingLabel}</span>
<span className="text-amber-600 mx-2">·</span>
<a
href="/login"
href="/login/"
className="text-amber-500 hover:text-amber-600 underline transition"
>
{t('demo.bannerSignUp' as any, lang)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/IntakeForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default function IntakeForm() {
{meds.length === 0 ? (
<div className="text-center py-8 space-y-2">
<p className="text-gray-400">{t('empty.home.noMedications', lang)}</p>
<a href="/medications" className="text-amber-500 text-sm underline">
<a href="/medications/" className="text-amber-500 text-sm underline">
{t('nav.medications', lang)} →
</a>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ export default function LandingPage() {
{t('lp.hero.subtitle' as any, lang)}
</p>
<div className="flex flex-col items-center gap-3">
<a href="/login"
<a href="/login/"
className="inline-block bg-amber-400 hover:bg-amber-500 text-white px-8 py-3 rounded-xl text-lg font-medium shadow-lg shadow-amber-200 transition">
{t('lp.hero.cta' as any, lang)}
</a>
<a href="/demo"
<a href="/demo/"
className="inline-block text-amber-500 hover:text-amber-600 text-sm underline transition">
{t('lp.hero.demo' as any, lang)}
</a>
Expand Down
4 changes: 2 additions & 2 deletions src/components/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ export default function LoginForm() {
return (
<>
{parts[0]}
<a href="/terms" className="underline hover:text-gray-600">{t('terms' as any, lang)}</a>
<a href="/terms/" className="underline hover:text-gray-600">{t('terms' as any, lang)}</a>
{parts[1]}
<a href="/privacy" className="underline hover:text-gray-600">{t('privacy' as any, lang)}</a>
<a href="/privacy/" className="underline hover:text-gray-600">{t('privacy' as any, lang)}</a>
{parts[2]}
</>
);
Expand Down
7 changes: 4 additions & 3 deletions src/components/SettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,10 @@ export default function SettingsPage() {

{/* フッターリンク */}
<section className="border-t pt-4 text-center text-xs text-gray-400 space-x-4">
<a href="/changelog" className="hover:text-gray-600">{t('settings.changelog' as any, lang)}</a>
<a href="/privacy" className="hover:text-gray-600">{t('nav.privacy' as any, lang)}</a>
<a href="/terms" className="hover:text-gray-600">{t('nav.terms' as any, lang)}</a>
<a href="/blog/" className="hover:text-gray-600">{t('settings.blog' as any, lang)}</a>
<a href="/changelog/" className="hover:text-gray-600">{t('settings.changelog' as any, lang)}</a>
<a href="/privacy/" className="hover:text-gray-600">{t('nav.privacy' as any, lang)}</a>
<a href="/terms/" className="hover:text-gray-600">{t('nav.terms' as any, lang)}</a>
</section>

{/* 言語ボトムシート */}
Expand Down
2 changes: 1 addition & 1 deletion src/components/UpdateModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default function UpdateModal({ isDemo }: UpdateModalProps) {

<div className="flex flex-col gap-2 pt-2">
<a
href="/changelog"
href="/changelog/"
className="text-center text-sm text-amber-600 hover:text-amber-700 transition"
>
{t('update.showChangelog' as any, lang)}
Expand Down
1 change: 1 addition & 0 deletions src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
"demo.bannerSignUp": "Create an account",
"lp.hero.demo": "Try the demo",
"settings.changelog": "Release Notes",
"settings.blog": "Developer Blog",
"changelog.title": "Release Notes",
"update.title": "App Updated",
"update.message": "Updated to version {version}",
Expand Down
1 change: 1 addition & 0 deletions src/i18n/id.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
"demo.bannerSignUp": "Buat akun",
"lp.hero.demo": "Coba demo",
"settings.changelog": "Catatan Rilis",
"settings.blog": "Blog Developer",
"changelog.title": "Catatan Rilis",
"update.title": "Aplikasi Diperbarui",
"update.message": "Diperbarui ke versi {version}",
Expand Down
1 change: 1 addition & 0 deletions src/i18n/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
"demo.bannerSignUp": "アカウントを作成する",
"lp.hero.demo": "デモを試す",
"settings.changelog": "更新履歴",
"settings.blog": "開発者ブログ",
"changelog.title": "更新履歴",
"update.title": "アップデートしました",
"update.message": "バージョン {version} に更新されました",
Expand Down
Loading