2
0

docs: 📝 Update feedback board links

This commit is contained in:
Baptiste Arnaud
2022-03-07 18:30:11 +01:00
parent 260819f124
commit e73fce3907
2 changed files with 42 additions and 43 deletions

View File

@ -1,79 +1,79 @@
/** @type {import('@docusaurus/types').DocusaurusConfig} */ /** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = { module.exports = {
title: "Typebot docs", title: 'Typebot docs',
tagline: "Get to Typebot next level with its documentation", tagline: 'Get to Typebot next level with its documentation',
url: "https://docs.typebot.io", url: 'https://docs.typebot.io',
baseUrl: "/", baseUrl: '/',
onBrokenLinks: "warn", onBrokenLinks: 'warn',
onBrokenMarkdownLinks: "warn", onBrokenMarkdownLinks: 'warn',
favicon: "img/favicon.png", favicon: 'img/favicon.png',
organizationName: "Typebot_io", // Usually your GitHub org/user name. organizationName: 'baptisteArno', // Usually your GitHub org/user name.
themeConfig: { themeConfig: {
navbar: { navbar: {
title: "Typebot", title: 'Typebot',
logo: { logo: {
alt: "Typebot Logo", alt: 'Typebot Logo',
src: "img/logo.svg", src: 'img/logo.svg',
}, },
items: [ items: [
{ {
href: "https://github.com/typebot-io/docs", href: 'https://github.com/typebot-io/docs',
label: "Contribute", label: 'Contribute',
position: "right", position: 'right',
}, },
], ],
}, },
algolia: { algolia: {
apiKey: "d2e121d4ad4e5346ac2c3329424981a1", apiKey: 'd2e121d4ad4e5346ac2c3329424981a1',
indexName: "typebot", indexName: 'typebot',
appId: "DXYNLHZTGJ", appId: 'DXYNLHZTGJ',
}, },
footer: { footer: {
links: [ links: [
{ {
title: "Product", title: 'Product',
items: [ items: [
{ {
label: "Homepage", label: 'Homepage',
to: "https://www.typebot.io", to: 'https://www.typebot.io',
}, },
{ {
label: "Roadmap", label: 'Roadmap',
to: "https://feedback.typebot.io", to: 'https://app.typebot.io/feedback',
}, },
{ {
label: "Blog", label: 'Blog',
to: "https://www.typebot.io/blog", to: 'https://www.typebot.io/blog',
}, },
], ],
}, },
{ {
title: "Community", title: 'Community',
items: [ items: [
{ {
label: "Facebook Group", label: 'Facebook Group',
href: "https://www.facebook.com/groups/typebot", href: 'https://www.facebook.com/groups/typebot',
}, },
{ {
label: "Twitter", label: 'Twitter',
href: "https://twitter.com/Typebot_io", href: 'https://twitter.com/Typebot_io',
}, },
], ],
}, },
{ {
title: "Company", title: 'Company',
items: [ items: [
{ {
label: "About", label: 'About',
to: "https://www.typebot.io/about", to: 'https://www.typebot.io/about',
}, },
{ {
label: "Terms of Service", label: 'Terms of Service',
href: "https://www.typebot.io/terms-of-service", href: 'https://www.typebot.io/terms-of-service',
}, },
{ {
label: "Privacy Policy", label: 'Privacy Policy',
href: "https://www.typebot.io/privacy-policies", href: 'https://www.typebot.io/privacy-policies',
}, },
], ],
}, },
@ -85,17 +85,16 @@ module.exports = {
}, },
presets: [ presets: [
[ [
"@docusaurus/preset-classic", '@docusaurus/preset-classic',
{ {
docs: { docs: {
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: "/", routeBasePath: '/',
}, },
theme: { theme: {
customCss: require.resolve("./src/css/custom.css"), customCss: require.resolve('./src/css/custom.css'),
}, },
}, },
], ],
], ],
scripts: ["https://unpkg.com/typebot-js", "/scripts/typebot.js"], }
};

View File

@ -8,7 +8,7 @@ const facebookGroupUrl = 'https://www.facebook.com/groups/typebot'
const typebotLinkedInUrl = 'https://www.linkedin.com/company/typebot' const typebotLinkedInUrl = 'https://www.linkedin.com/company/typebot'
const typebotTwitterUrl = 'https://twitter.com/Typebot_io' const typebotTwitterUrl = 'https://twitter.com/Typebot_io'
export const contactUrl = 'https://bot.typebot.io/landing-page-bubble-en' export const contactUrl = 'https://bot.typebot.io/landing-page-bubble-en'
export const roadmapLink = 'https://feedback.typebot.io/roadmap' export const roadmapLink = 'https://app.typebot.io/feedback'
export const Footer = () => { export const Footer = () => {
return ( return (