(date: Date)
| 101 | }; |
| 102 | |
| 103 | const formatDate = (date: Date) => { |
| 104 | return new Date(date).toLocaleDateString("en-US", { |
| 105 | year: "numeric", |
| 106 | month: "long", |
| 107 | day: "numeric", |
| 108 | }); |
| 109 | }; |
| 110 | |
| 111 | return ( |
| 112 | <section className="flex flex-col items-center justify-center px-4 mb-24 w-full"> |