Website/pages/gallery.tsx

26 lines
525 B
TypeScript
Raw Normal View History

2024-08-29 13:20:28 +00:00
import Footer from '@/components/Footer';
import Meta from '@/components/Meta';
import NavBar from '@/components/NavBar';
import PageContent from '@/components/PageContent';
export default function Gallery() {
return (
<>
<Meta page={{ title: 'Gallery' }} />
<NavBar currentPage="gallery" />
<PageContent>
<div className="container">
<h1>Gallery</h1>
<p>
Under Construction
</p>
</div>
</PageContent>
<Footer />
</>
);
}