2021-06-04 20:43:37 +00:00
|
|
|
import Head from 'next/head';
|
|
|
|
|
import CustomNextImage from '../components/CustomNextImage';
|
|
|
|
|
import Layout from '../components/Layout';
|
|
|
|
|
import useUser from '../lib/useUser';
|
|
|
|
|
import { PhotoPageStyles } from './photos';
|
|
|
|
|
|
|
|
|
|
export default function StoryPage() {
|
|
|
|
|
const { user } = useUser({ redirectTo: '/login' });
|
|
|
|
|
|
|
|
|
|
if (!user || user.isLoggedIn === false) {
|
|
|
|
|
return <Layout>Loading...</Layout>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<Head>
|
|
|
|
|
<title key="title">N & N | Our Story</title>
|
|
|
|
|
</Head>
|
|
|
|
|
<PhotoPageStyles className="center">
|
|
|
|
|
<h1>Our Story</h1>
|
|
|
|
|
<CustomNextImage
|
2022-01-11 01:14:30 +00:00
|
|
|
src="https://picsum.photos/800/450"
|
2021-06-04 20:43:37 +00:00
|
|
|
alt="Placeholder Our Story Image"
|
|
|
|
|
height={450}
|
|
|
|
|
width={800}
|
|
|
|
|
/>
|
|
|
|
|
<p>
|
|
|
|
|
Our story Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
|
|
|
|
Natus, illo. Vitae rerum officia, commodi atque reprehenderit tempore
|
|
|
|
|
amet accusantium dicta corrupti sint vero laboriosam quae explicabo,
|
|
|
|
|
repellat quisquam. Vitae, cumque.
|
|
|
|
|
</p>
|
|
|
|
|
</PhotoPageStyles>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|