Skip to content

Commit

Permalink
feat: add explore more links to the bottom of all nav pages
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrobertbrooks committed Nov 27, 2024
1 parent b6b6eab commit b48b167
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 4 deletions.
6 changes: 6 additions & 0 deletions src/pages/Publications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
wami2024Img,
theMonheganWildlands2024Img,
} from 'assets/pages/publications';
import { Link, Url } from 'router';
import {
Page,
Row,
Expand Down Expand Up @@ -72,6 +73,11 @@ export const Publications = () => (
year="1995"
coverImg={monhegan1995Img}
/>
<Divider />
<Paragraph className="mt-4 text-center">
See more artwork on the{' '}
<Link to={Url.CollectionPage}>collection page</Link>.
</Paragraph>
</Page>
);

Expand Down
5 changes: 5 additions & 0 deletions src/pages/Quotes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
changingLightMonheganIcePondImg,
altosTwilightImg,
} from 'assets/artwork';
import { Link, Url } from 'router';
import { styled, Page, Divider, H1, H2, Paragraph, Artwork } from './shared';

export const Quotes = () => (
Expand Down Expand Up @@ -78,6 +79,10 @@ export const Quotes = () => (
<Source>
- <em>The Observer Patriot</em> (1990)
</Source>
<Divider />
<Paragraph className="mt-4 text-center">
Watch more on the <Link to={Url.VideosPage}>videos page</Link>.
</Paragraph>
</Page>
);

Expand Down
6 changes: 6 additions & 0 deletions src/pages/Reviews.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
germinationImg,
changingLightMonheganIcePondImg,
} from 'assets/artwork';
import { Link, Url } from 'router';
import {
styled,
Page,
Expand Down Expand Up @@ -103,6 +104,11 @@ export const Reviews = () => (
colorful foliage.&quot;
</Review>
<Source>- Carl Little (July 2024)</Source>
<Divider />
<Paragraph className="mt-4 text-center">
See more artwork on the{' '}
<Link to={Url.CollectionPage}>collection page</Link>.
</Paragraph>
</Page>
);

Expand Down
5 changes: 5 additions & 0 deletions src/pages/Statements.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { Link, Url } from 'router';
import { Page, H1, H2, Paragraph, Divider } from './shared';

export const Statements = () => (
Expand Down Expand Up @@ -118,5 +119,9 @@ export const Statements = () => (
a life of their own and often dictate new patterns that expand meaning and
the boundaries of personal experience.&quot;
</Paragraph>
<Divider />
<Paragraph className="mt-4 text-center">
Read more on the <Link to={Url.QuotesPage}>quotes page</Link>.
</Paragraph>
</Page>
);
7 changes: 4 additions & 3 deletions src/pages/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -519,9 +519,10 @@ export const Timeline = () => (
<Col md={2} />
</Row>
</DecadeWrapper>
<Paragraph className="mt-4 text-center">
See more artwork on the{' '}
<Link to={Url.CollectionPage}>collection page</Link>.
<Divider />
<Paragraph className="text-center">
Learn more on the <Link to={Url.StatementsPage}>statements page</Link>
.
</Paragraph>
</Col>
</Row>
Expand Down
7 changes: 6 additions & 1 deletion src/pages/Videos.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExternalLink } from 'router';
import { ExternalLink, Link, Url } from 'router';
import {
styled,
Page,
Expand Down Expand Up @@ -52,6 +52,11 @@ export const Videos = () => (
src="https://www.youtube.com/embed/OuqiylLBRRA"
/>
</VideoWrapper>
<Divider />
<Paragraph className="mt-4 text-center">
See more artwork on the{' '}
<Link to={Url.CollectionPage}>collection page</Link>.
</Paragraph>
</Col>
</Row>
</Page>
Expand Down

0 comments on commit b48b167

Please sign in to comment.