diff --git a/src/app/page.tsx b/src/app/page.tsx
index dcb58ab..8f8232e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,24 +1,19 @@
"use client";
import Footer from "@/components/Footer";
import Main from "@/components/Main";
-import { Box, ThemeProvider, createTheme } from "@mui/material";
+import { Box } from "@mui/material";
export default function App() {
- const theme = createTheme({
- palette: {},
- });
return (
-
-
-
-
-
-
+
+
+
+
);
}
diff --git a/src/components/SalesPolicy.tsx b/src/components/SalesPolicy.tsx
index 7adfa37..127eb68 100644
--- a/src/components/SalesPolicy.tsx
+++ b/src/components/SalesPolicy.tsx
@@ -1,12 +1,5 @@
import CottageIcon from "@mui/icons-material/Cottage";
-import {
- Box,
- Button,
- ThemeProvider,
- Typography,
- createTheme,
-} from "@mui/material";
-import { orange } from "@mui/material/colors";
+import { Box, Button, Typography } from "@mui/material";
export default function SalesPolicy() {
function createData(title: string, content: string) {
@@ -28,41 +21,34 @@ export default function SalesPolicy() {
),
];
- const theme = createTheme({
- palette: {
- primary: orange,
- },
- });
return (
-
+
+ 特定商取引法に基づく表記
- 特定商取引法に基づく表記
-
- {rows.map((row) => (
-
- {row.title}
- {row.content}
-
- ))}
-
-
- }>
- Go Home
-
+ {rows.map((row) => (
+
+ {row.title}
+ {row.content}
+
+ ))}
-
+
+ }>
+ Go Home
+
+
);
}