diff --git a/components/calender/Day.tsx b/components/calender/Day.tsx
new file mode 100644
index 0000000..a7088a9
--- /dev/null
+++ b/components/calender/Day.tsx
@@ -0,0 +1,59 @@
+import { Box, Text } from "@chakra-ui/react";
+import { add, getYear, getMonth, sub, getDate } from "date-fns";
+import router from "next/router";
+import React, { Fragment } from "react";
+import AddSticker from "./modals/AddSticker";
+
+const Day = (
+ isOverflow: boolean,
+ date: Date,
+ overflowDirection: "next" | "prev" | null,
+ selectedDate: Date
+) => {
+ return (
+
+ {isOverflow && (
+ {
+ if (overflowDirection === "next") {
+ console.log(overflowDirection);
+ const newMonth = add(selectedDate, { months: 1 });
+
+ const year = getYear(newMonth);
+ const month = getMonth(newMonth) + 1;
+
+ router.push(`/calendar/${year}/${month}`);
+ } else if (overflowDirection === "prev") {
+ const newMonth = sub(selectedDate, { months: 1 });
+
+ const year = getYear(newMonth);
+ const month = getMonth(newMonth) + 1;
+
+ router.push(`/calendar/${year}/${month}`);
+ }
+ }
+ })}
+ >
+
+ {!isOverflow && }
+ {`Day ${getDate(date)}`}
+
+
+ )}
+
+ );
+};
+
+export default Day;
diff --git a/components/calender/modals/AddSticker.tsx b/components/calender/modals/AddSticker.tsx
index cbe85c2..10ead41 100644
--- a/components/calender/modals/AddSticker.tsx
+++ b/components/calender/modals/AddSticker.tsx
@@ -6,7 +6,7 @@ import {
ModalHeader,
ModalCloseButton,
ModalBody,
- ModalFooter,
+ ModalFooter
// Lorem
} from "@chakra-ui/react";
import React, { Fragment, useState } from "react";
@@ -23,8 +23,7 @@ const AddSticker = (): JSX.Element => {
Modal Title
-
-
+