You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
664 B
33 lines
664 B
3 years ago
|
import Head from 'next/head'
|
||
|
import styles from '../styles/Gallery.module.css'
|
||
|
import Header from '../components/header';
|
||
|
import Footer from '../components/footer';
|
||
|
|
||
|
export default function Gallery() {
|
||
|
return (
|
||
|
<div className="page">
|
||
|
<Head>
|
||
|
<title>Trick - Gallery</title>
|
||
|
</Head>
|
||
|
|
||
|
<Header />
|
||
|
|
||
|
<div className="container">
|
||
|
<article className="content">
|
||
|
|
||
|
<section>
|
||
|
<div className="card">
|
||
|
<h1>Gallery</h1>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
</article>
|
||
|
</div>
|
||
|
|
||
|
<Footer />
|
||
|
|
||
|
|
||
|
</div>
|
||
|
)
|
||
|
}
|