This repository has been archived by the owner on Aug 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfjord.config.ts
94 lines (88 loc) · 3.12 KB
/
fjord.config.ts
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
const fjord: FjordProps = {
site_name: "Fjord", // site name: used in the header and footer
site_domain: "https://fjord.dev", // site domain: used in the sitemap
site_title:
"Fjord | Opinionated Next JS and Wordpress Starter by Alpine Codex",
site_description:
"Fjord is an opinionated Next JS and Wordpress starter. It's built to be a solid foundation for your next project.",
keywords: ["Next.js", "React", "JavaScript"],
authors: [{ name: "9d8", url: "https://9d8.dev" }],
posts_per_page: 9,
wordpress_url: "https://windpress.wpenginepowered.com",
google_analytics_id: "G-7VM8KZENP7",
logo: "../logo.svg",
// change the font using `next/font` in `layout.tsx` in the app directory.
// check out the docs here: https://nextjs.org/docs/app/building-your-application/optimizing/fonts#google-fonts
menu: {
main: {
home: "/", // Don't Change
blog: "/posts", // default is `/posts`
about: "/about", // you can remove this if you don't want an about page
contact: "/contact", // you can remove this if you don't want a contact page
},
content: {
authors: "/posts/authors", // default is `/posts/authors`
categories: "/posts/categories", // default is `/posts/categories`
tags: "/posts/tags", // default is `/posts/tags`
pages: "/all", // default is `/all`
},
legal: {
privacy_policy: "/privacy-policy", // default is `/privacy-policy`
privacy_policy_text: "Privacy Policy", // default is `Privacy Policy`
terms_of_service: "/terms-of-service", // default is `/terms-of-service`
terms_of_service_text: "Terms of Service", // default is `Terms of Service`
},
cta: "https://github.com/9d8dev/fjord", // Link to CTA
},
nav_menu: {
title: "Pages",
items: [
{
title: "About",
href: "/about",
description:
"Learn more about Fjord and how to use it for your next project.",
},
{
title: "Contact",
href: "/contact",
description:
"Get in touch with us if you have any questions or feedback. We would love to hear from you.",
},
{
title: "All Pages",
href: "/all",
description: "A list of all the pages on this site.",
},
{
title: "Authors",
href: "/posts/authors",
description: "A list of all the authors on this site.",
},
],
},
directory_menu: {
title: "Learn Fjord",
items: [
{
title: "Documentation",
href: "https://github.com/9d8dev/fjord",
description:
"Styles for headings, paragraphs, lists, and other inline elements.",
},
{
title: "Layout Components",
href: "https://github.com/9d8dev/fjord",
description:
"Components that help you lay out your content, like Main, Craft.Section, and Craft.Container.",
},
{
title: "Navigation",
href: "https://github.com/9d8dev/craft/wiki/components#nav-component",
description:
"A Navigation component that helps you build accessible navigation menus.",
},
],
},
};
export default fjord;