From d7ae8b315c21259ea9f79d1f40df9a18914af19e Mon Sep 17 00:00:00 2001 From: ItsukiKigoshi Date: Thu, 1 Aug 2024 18:48:34 +0900 Subject: [PATCH] feat: add curation&reading tab --- src/app/curation/page.tsx | 3 +- src/app/page.tsx | 15 +---- src/app/reading/page.tsx | 7 +++ src/app/salespolicy/page.tsx | 7 +-- src/app/template.tsx | 24 ++++++- src/components/Footer.tsx | 56 ++++++++++++----- src/components/Header.tsx | 110 +++++++++++++++++++++++++++++++++ src/components/Main.tsx | 64 ++----------------- src/components/SalesPolicy.tsx | 23 +++---- 9 files changed, 198 insertions(+), 111 deletions(-) create mode 100644 src/app/reading/page.tsx create mode 100644 src/components/Header.tsx diff --git a/src/app/curation/page.tsx b/src/app/curation/page.tsx index 3421508..18d0748 100644 --- a/src/app/curation/page.tsx +++ b/src/app/curation/page.tsx @@ -1,5 +1,6 @@ +import { Stack, Typography } from "@mui/material"; import React from "react"; export default function App() { - return
page
; + return Curation: Under Construction; } diff --git a/src/app/page.tsx b/src/app/page.tsx index 8f8232e..7953a7a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,19 +1,8 @@ "use client"; -import Footer from "@/components/Footer"; import Main from "@/components/Main"; +import Footer from "@/components/Footer"; import { Box } from "@mui/material"; export default function App() { - return ( - -
-