Merge Tag v0.2.17.0

This commit is contained in:
2025-06-04 16:08:11 +02:00
13 changed files with 125 additions and 108 deletions

View File

@@ -7,7 +7,6 @@ import { useTranslations } from 'next-intl'
import Link from 'next/link'
import { usePathname } from 'next/navigation'
import { useEffect, useState } from 'react'
import AboutModal from './AboutModal'
type ViewPort = 'main' | 'mobile'
@@ -68,7 +67,6 @@ export default function Navigation({ viewPort }: NavigationProps) {
))}
</div>
</nav>
<AboutModal isOpen={showAbout} onClose={() => setShowAbout(false)} />
</>
)
}
@@ -97,7 +95,6 @@ export default function Navigation({ viewPort }: NavigationProps) {
</div>
</div>
</div>
<AboutModal isOpen={showAbout} onClose={() => setShowAbout(false)} />
</div>
)
}