Skip to content

Commit

Permalink
[#13] Add InformationPage
Browse files Browse the repository at this point in the history
  • Loading branch information
ppacman committed Feb 6, 2023
1 parent c47fa8f commit 4609d1d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pages/Information/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import "../styles/globals.css";
import styled from "styled-components";
import type { AppProps } from "next/app";
import { Header } from "../../src/components";
import { Footer } from "../../src/components/footer/Footer";
import { Layout } from "../../src/components/layout/Layout";
const info = () => {
return (
<div>
<Header />

<Footer />
</div>
);
};


const Wrapper = styled.div`
`

0 comments on commit 4609d1d

Please sign in to comment.