diff --git a/app/contacts/page.tsx b/app/contacts/page.tsx
new file mode 100644
index 00000000..79f8cbab
--- /dev/null
+++ b/app/contacts/page.tsx
@@ -0,0 +1,24 @@
+import { getServerSession } from "next-auth/next";
+import { authOptions } from "@/app/api/auth/[...nextauth]/route";
+import { redirect } from "next/navigation";
+
+export default async function Page() {
+ const session = await getServerSession(authOptions);
+
+ if (!session) {
+ redirect("/signin");
+ }
+
+ return (
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/app/diary/page.tsx b/app/diary/page.tsx
new file mode 100644
index 00000000..541769c9
--- /dev/null
+++ b/app/diary/page.tsx
@@ -0,0 +1,24 @@
+import { getServerSession } from "next-auth/next";
+import { authOptions } from "@/app/api/auth/[...nextauth]/route";
+import { redirect } from "next/navigation";
+
+export default async function Page() {
+ const session = await getServerSession(authOptions);
+
+ if (!session) {
+ redirect("/signin");
+ }
+
+ return (
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/app/drive/page.tsx b/app/drive/page.tsx
new file mode 100644
index 00000000..affe9270
--- /dev/null
+++ b/app/drive/page.tsx
@@ -0,0 +1,24 @@
+import { getServerSession } from "next-auth/next";
+import { authOptions } from "@/app/api/auth/[...nextauth]/route";
+import { redirect } from "next/navigation";
+
+export default async function Page() {
+ const session = await getServerSession(authOptions);
+
+ if (!session) {
+ redirect("/signin");
+ }
+
+ return (
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/app/mail/page.tsx b/app/mail/page.tsx
new file mode 100644
index 00000000..9549edbb
--- /dev/null
+++ b/app/mail/page.tsx
@@ -0,0 +1,24 @@
+import { getServerSession } from "next-auth/next";
+import { authOptions } from "@/app/api/auth/[...nextauth]/route";
+import { redirect } from "next/navigation";
+
+export default async function Page() {
+ const session = await getServerSession(authOptions);
+
+ if (!session) {
+ redirect("/signin");
+ }
+
+ return (
+
+
+
+
+
+ );
+}
\ No newline at end of file