-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSiteData.tsx
74 lines (70 loc) · 2.08 KB
/
SiteData.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { CTAButton } from '@components/CTAButton'
import Link from 'next/link'
import React from 'react'
// Info for HTML <head/> tags, Hero component, and Open Graph link sharing
export const SITE_DATA = {
title: 'Banquet',
description: 'A gourmet Next.js boilerplate',
author: 'Timothy Merritt',
authorHandle: '@timmybytes', // For Twitter link cards
authorHomepage: 'https://timmybytes.com',
color: '#e9c46a',
repo: 'https://github.com/timmybytes/banquet',
url: 'banquet-starter.netlify.app',
img: 'assets/banquet-card.png', // For Open Graph link preview, NOTE - SVG is not supported
}
export const HERO_DATA = {
heading: 'A Next.js starter to satisfy your development cravings',
subheading:
'Banquet is configured for an excellent developer experience, and includes a feast of tooling and presets for building on the modern web.',
image: 'assets/images/cody-chan-GXhmQt6MFX8-unsplash.jpg',
ctaLink: 'https://github.com/timmybytes/banquet',
ctaLabel: 'Fork on GitHub',
smallText: (
<React.Fragment>
Free and open-source under an MIT License. Photo by{' '}
<a href='https://unsplash.com/@cceee?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText'>
Cody Chan
</a>{' '}
on{' '}
<a href='https://unsplash.com/s/photos/meal?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText'>
Unsplash
</a>
.
</React.Fragment>
),
}
// Links for Header component with Ionicon icons
export const HEADER_LINKS = [
{
href: '#',
title: 'Home',
},
{
href: '#features',
title: 'Features',
},
{
href: 'https://github.com/timmybytes/banquet',
title: (
<CTAButton
link={'https://github.com/timmybytes/banquet'}
label='View on GitHub'
color='brand.primary'
bgColor='brand.dark'
/>
),
},
]
export const FOOTER_DATA = (
<>
Made with 🧁 by{' '}
{SITE_DATA.authorHomepage && SITE_DATA.author && (
<>
<Link href={SITE_DATA.authorHomepage}>
<a>{SITE_DATA.author}</a>
</Link>
</>
)}
</>
)