Skip to content
This repository was archived by the owner on Nov 30, 2025. It is now read-only.

Commit be6b731

Browse files
authored
Merge pull request #128 from cyclic-software/ui-changes
UI changes
2 parents cfe5620 + b407559 commit be6b731

File tree

17 files changed

+1271
-170
lines changed

17 files changed

+1271
-170
lines changed

docs/overview/build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ It is possible to customize this process with _Advanced Build Options_:
6565
- at the time of first deployment, in the _Advanced_ dropdown
6666
- <img src="/img/build-options/advancedWNode.png" width="350px"/>
6767
- in _Environments_ tab > _Build Options_ of an app's dashboard
68-
- <img src="/img/build-options/buildwithnode2.png" width="650px"/>
68+
- <img src="/img/build-options/buildwithnode2.png" width="350px"/>
6969

7070
#### **Root Path**
7171
The root path specifies which directory Cyclic will run build scripts.
@@ -113,7 +113,7 @@ This video will give you an example of how to deploy a static site without a bac
113113

114114
#### **Runtime**
115115
Newly deployed Cyclic apps will use Node.js v18.12.1 by default. If you are using a framework or library that requires an older version of Node.js to function properly, you may adjust it here.
116-
<img src="/img/build-options/runtime.png" width="350px"/>
116+
<img src="/img/build-options/runtime.png" width="500px"/>
117117

118118

119119

docusaurus.config.js

Lines changed: 52 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ const config = {
1717
projectName: 'docs', // Usually your repo name.
1818
trailingSlash: false, // https://docusaurus.io/docs/deployment#deploying-to-github-pages
1919
plugins: [
20+
async function myPlugin(context, options) {
21+
return {
22+
name: 'docusaurus-tailwindcss',
23+
configurePostCss(postcssOptions) {
24+
postcssOptions.plugins.push(require('tailwindcss'))
25+
postcssOptions.plugins.push(require('autoprefixer'))
26+
return postcssOptions
27+
}
28+
}
29+
},
2030
require.resolve('docusaurus-lunr-search'),
2131
'./src/plugins/analytics/index.js',
2232
[
@@ -76,7 +86,7 @@ const config = {
7686
style: 'dark',
7787
logo: {
7888
alt: 'Cyclic Logo',
79-
src: 'img/logo-light.png',
89+
src: 'img/cyclic-logo.svg',
8090
href: 'https://app.cyclic.sh/',
8191
target: '_self',
8292
},
@@ -100,47 +110,47 @@ const config = {
100110

101111
],
102112
},
103-
footer: {
104-
style: 'dark',
105-
links: [
106-
{
107-
title: 'Cyclic',
108-
items: [
109-
{
110-
label: 'Home - www.cyclic.sh',
111-
href: 'https://www.cyclic.sh/',
112-
},
113-
{
114-
label: 'App - app.cyclic.sh',
115-
href: 'https://app.cyclic.sh/',
116-
},
117-
],
118-
},
119-
{
120-
title: 'Community',
121-
items: [
122-
{
123-
label: 'Discord',
124-
href: 'https://discord.gg/huhcqxXCbE',
125-
},
126-
{
127-
label: 'Twitter',
128-
href: 'https://twitter.com/cyclicsoftware',
129-
},
130-
],
131-
},
132-
{
133-
title: 'More',
134-
items: [
135-
{
136-
label: 'GitHub',
137-
href: 'https://github.com/cyclic-software/docs',
138-
},
139-
],
140-
},
141-
],
142-
copyright: `Copyright © ${new Date().getFullYear()} Cyclic Software, Inc.`,
143-
},
113+
// footer: {
114+
// style: 'dark',
115+
// links: [
116+
// {
117+
// title: 'Cyclic',
118+
// items: [
119+
// {
120+
// label: 'Home - www.cyclic.sh',
121+
// href: 'https://www.cyclic.sh/',
122+
// },
123+
// {
124+
// label: 'App - app.cyclic.sh',
125+
// href: 'https://app.cyclic.sh/',
126+
// },
127+
// ],
128+
// },
129+
// {
130+
// title: 'Community',
131+
// items: [
132+
// {
133+
// label: 'Discord',
134+
// href: 'https://discord.gg/huhcqxXCbE',
135+
// },
136+
// {
137+
// label: 'Twitter',
138+
// href: 'https://twitter.com/cyclicsoftware',
139+
// },
140+
// ],
141+
// },
142+
// {
143+
// title: 'More',
144+
// items: [
145+
// {
146+
// label: 'GitHub',
147+
// href: 'https://github.com/cyclic-software/docs',
148+
// },
149+
// ],
150+
// },
151+
// ],
152+
// copyright: `Copyright © ${new Date().getFullYear()} Cyclic Software, Inc.`,
153+
// },
144154
prism: {
145155
theme: lightCodeTheme,
146156
darkTheme: darkCodeTheme,

0 commit comments

Comments
 (0)