Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #159 from calmery-chan/develop
Browse files Browse the repository at this point in the history
個展を公開する
  • Loading branch information
metaneno committed Feb 27, 2021
2 parents d818e5b + dbc19e0 commit 3062351
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 29 deletions.
20 changes: 0 additions & 20 deletions src/pages/experimental.tsx

This file was deleted.

25 changes: 16 additions & 9 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
import styled from "@emotion/styled";
import { NextPage } from "next";
import React from "react";
import LoadingIcon from "../components/lp/LoadingIcon";
import MainVisual from "../components/lp/MainVisual";

const Index: NextPage = () => (
<div className="grid w-full h-full place-items-center">
<img
className="w-full"
src="/construction.png"
style={{ maxWidth: `512px` }}
/>
</div>
);
const Index: NextPage = () => {
return (
<Wrapper>
<MainVisual />
<LoadingIcon />
</Wrapper>
);
};

const Wrapper = styled.div`
overflow: hidden;
`;

export default Index;

0 comments on commit 3062351

Please sign in to comment.