fix: homepage date link
This commit is contained in:
parent
5510bdee5e
commit
b376af96ea
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ export default async function Home({ searchParams }: HomePageProps) {
|
||||||
{days.map((day) => (
|
{days.map((day) => (
|
||||||
<li key={day} className="mb-2">
|
<li key={day} className="mb-2">
|
||||||
<a
|
<a
|
||||||
href={`/day/${day}`}
|
href={`/date/${day}`}
|
||||||
className="text-blue-600 hover:underline"
|
className="text-blue-600 hover:underline"
|
||||||
>
|
>
|
||||||
{new Date(day).toLocaleDateString("cs-CZ", {
|
{new Date(day).toLocaleDateString("cs-CZ", {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue