Skip to content

Commit

Permalink
Merge pull request #128 from cyclic-software/ui-changes
Browse files Browse the repository at this point in the history
UI changes
  • Loading branch information
seekayel authored Nov 2, 2023
2 parents cfe5620 + b407559 commit be6b731
Show file tree
Hide file tree
Showing 17 changed files with 1,271 additions and 170 deletions.
4 changes: 2 additions & 2 deletions docs/overview/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ It is possible to customize this process with _Advanced Build Options_:
- at the time of first deployment, in the _Advanced_ dropdown
- <img src="/img/build-options/advancedWNode.png" width="350px"/>
- in _Environments_ tab > _Build Options_ of an app's dashboard
- <img src="/img/build-options/buildwithnode2.png" width="650px"/>
- <img src="/img/build-options/buildwithnode2.png" width="350px"/>

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

#### **Runtime**
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.
<img src="/img/build-options/runtime.png" width="350px"/>
<img src="/img/build-options/runtime.png" width="500px"/>



94 changes: 52 additions & 42 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ const config = {
projectName: 'docs', // Usually your repo name.
trailingSlash: false, // https://docusaurus.io/docs/deployment#deploying-to-github-pages
plugins: [
async function myPlugin(context, options) {
return {
name: 'docusaurus-tailwindcss',
configurePostCss(postcssOptions) {
postcssOptions.plugins.push(require('tailwindcss'))
postcssOptions.plugins.push(require('autoprefixer'))
return postcssOptions
}
}
},
require.resolve('docusaurus-lunr-search'),
'./src/plugins/analytics/index.js',
[
Expand Down Expand Up @@ -76,7 +86,7 @@ const config = {
style: 'dark',
logo: {
alt: 'Cyclic Logo',
src: 'img/logo-light.png',
src: 'img/cyclic-logo.svg',
href: 'https://app.cyclic.sh/',
target: '_self',
},
Expand All @@ -100,47 +110,47 @@ const config = {

],
},
footer: {
style: 'dark',
links: [
{
title: 'Cyclic',
items: [
{
label: 'Home - www.cyclic.sh',
href: 'https://www.cyclic.sh/',
},
{
label: 'App - app.cyclic.sh',
href: 'https://app.cyclic.sh/',
},
],
},
{
title: 'Community',
items: [
{
label: 'Discord',
href: 'https://discord.gg/huhcqxXCbE',
},
{
label: 'Twitter',
href: 'https://twitter.com/cyclicsoftware',
},
],
},
{
title: 'More',
items: [
{
label: 'GitHub',
href: 'https://github.com/cyclic-software/docs',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Cyclic Software, Inc.`,
},
// footer: {
// style: 'dark',
// links: [
// {
// title: 'Cyclic',
// items: [
// {
// label: 'Home - www.cyclic.sh',
// href: 'https://www.cyclic.sh/',
// },
// {
// label: 'App - app.cyclic.sh',
// href: 'https://app.cyclic.sh/',
// },
// ],
// },
// {
// title: 'Community',
// items: [
// {
// label: 'Discord',
// href: 'https://discord.gg/huhcqxXCbE',
// },
// {
// label: 'Twitter',
// href: 'https://twitter.com/cyclicsoftware',
// },
// ],
// },
// {
// title: 'More',
// items: [
// {
// label: 'GitHub',
// href: 'https://github.com/cyclic-software/docs',
// },
// ],
// },
// ],
// copyright: `Copyright © ${new Date().getFullYear()} Cyclic Software, Inc.`,
// },
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
Expand Down
Loading

0 comments on commit be6b731

Please sign in to comment.