Skip to content

Commit

Permalink
fix: url
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcjy committed Jun 29, 2024
1 parent e111f4e commit a6acea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const Calendar = () => {
{july.map((row, i) => (
<div key={i} className="table-row">
{row.map((day, i) => (
<Link key={i} href={day ? `/${day}` : '#'} className="table-cell border h-[16vh]">
<Link key={i} href={day ? `/daily-bible/${day}` : '#'} className="table-cell border h-[16vh]">
{day ?
<div>
<div className={`p-1.5 font-bold ${setDayColor(i)}`}>{day}</div>
Expand Down

0 comments on commit a6acea2

Please sign in to comment.