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
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"snyk.advanced.organization": "738830e3-14db-4f20-b39d-740a54b60bd3",
"snyk.advanced.autoSelectOrganization": true
}
1 change: 0 additions & 1 deletion bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function RootLayout({
<ul className="flex space-x-4">
<li>
<Link
href="#"
href="/"
className="underline hover:no-underline hover:text-blue-400"
>
ホーム
Expand All @@ -62,7 +62,7 @@ export default function RootLayout({
</li>
<li>
<Link
href="#"
href="/invite"
className="underline hover:no-underline hover:text-blue-400"
>
導入する
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Home() {
</div>
<div className="flex space-x-4 justify-center">
<Link
href="#"
href="/invite"
className="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors"
>
導入する
Expand Down
Loading