Skip to content

Commit

Permalink
fix: undo commit to home page
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaeyeonAhn committed Nov 21, 2024
1 parent 7ea4a15 commit 685384f
Showing 1 changed file with 1 addition and 52 deletions.
53 changes: 1 addition & 52 deletions packages/web/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,56 +1,5 @@
"use client";

import Calendar from "../common/components/Calendar/Calendar";
const Home = () => <div>Welcome to SPARCS Students!</div>;

const Home = () => (
<>
<div>Welcome to SPARCS Students!</div>
<Calendar
existDates={[new Date("2024-11-07"), new Date("2024-11-11")]}
eventPeriods={[
{ start: new Date("2024-11-01"), end: new Date("2024-11-01") },
]}
selectedDates={[new Date("2024-11-17")]}
size="md"
width={354}
/>
<Calendar
existDates={[new Date("2024-11-07"), new Date("2024-11-11")]}
eventPeriods={[
{ start: new Date("2024-11-01"), end: new Date("2024-11-08") },
]}
selectedDates={[new Date("2024-11-17")]}
size="md"
width={354}
/>
<Calendar
existDates={[new Date("2024-11-07"), new Date("2024-11-11")]}
eventPeriods={[
{ start: new Date("2024-11-01"), end: new Date("2024-11-01") },
]}
selectedDates={[new Date("2024-11-17")]}
size="md"
title="학사일정"
width={354}
/>
<Calendar
existDates={[
new Date("2024-11-04"),
new Date("2024-11-07"),
new Date("2024-11-11"),
new Date("2024-11-24"),
new Date("2024-11-29"),
new Date("2024-11-30"),
new Date("2024-12-01"),
]}
eventPeriods={[
{ start: new Date("2024-11-01"), end: new Date("2024-11-01") },
]}
selectedDates={[new Date("2024-11-17")]}
size="md"
title="학사일정"
width={354}
/>
</>
);
export default Home;

0 comments on commit 685384f

Please sign in to comment.