-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16a0f99
commit d90c15a
Showing
1 changed file
with
23 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ export default function App() { | |
} | ||
|
||
const rows = [ | ||
createData("販売業社の名称/運営統括責任者", "Itsuki KIGOSHI"), | ||
createData("販売業社の名称 / 運営統括責任者", "Itsuki KIGOSHI"), | ||
createData("所在地/住所", "請求があったら遅滞なく開示します"), | ||
createData("e-mail", "[email protected]"), | ||
createData("引渡時期", "注文後すぐにご利用いただけます"), | ||
|
@@ -36,29 +36,32 @@ export default function App() { | |
sx={{ | ||
display: "grid", | ||
placeItems: "center", // Center the content horizontally and vertically | ||
minHeight: "80vh", // Set a minimum height to fill the entire viewport | ||
m: 5, | ||
minHeight: "100vh", // Set a minimum height to fill the entire viewport | ||
m: 3, | ||
}} | ||
> | ||
{/* The codes below should be more readable */} | ||
<Typography sx={{ fontSize: 28 }}>特定商取引法に基づく表記</Typography> | ||
<TableContainer component={Paper}> | ||
<Table sx={{ minWidth: 650 }}> | ||
<TableBody> | ||
{rows.map((row) => ( | ||
<TableRow | ||
key={row.title} | ||
sx={{ "&:last-child td, &:last-child th": { border: 0 } }} | ||
> | ||
<TableCell component="th" scope="row"> | ||
{row.title} | ||
</TableCell> | ||
<TableCell>{row.content}</TableCell> | ||
</TableRow> | ||
))} | ||
</TableBody> | ||
</Table> | ||
</TableContainer> | ||
<Paper> | ||
<TableContainer> | ||
<Table sx={{ minWidth: 650 }}> | ||
<TableBody> | ||
{rows.map((row) => ( | ||
<TableRow | ||
key={row.title} | ||
sx={{ "&:last-child td, &:last-child th": { border: 0 } }} | ||
> | ||
<TableCell component="th" scope="row"> | ||
{row.title} | ||
</TableCell> | ||
<TableCell>{row.content}</TableCell> | ||
</TableRow> | ||
))} | ||
</TableBody> | ||
</Table> | ||
</TableContainer> | ||
</Paper> | ||
|
||
<Button href="/" variant="contained" startIcon={<CottageIcon />}> | ||
Go Home | ||
</Button> | ||
|