From 9026f5405aad5cc3ffe94bc11b6a483b649f418b Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Fri, 15 Mar 2024 20:05:29 +0700 Subject: [PATCH] Improvement feedback --- docs/src/containers/Banner/index.js | 5 + docs/src/containers/Footer/index.js | 33 ++-- docs/src/containers/Testimonial/index.js | 185 +++++++++++++++++- docs/src/pages/index.js | 104 ++++++++-- docs/src/styles/components/base.scss | 4 + docs/src/styles/main.scss | 2 +- docs/static/img/homepage/app-frame-dark.webp | Bin 95598 -> 205972 bytes docs/static/img/homepage/app-frame-light.webp | Bin 102544 -> 219550 bytes docs/static/img/homepage/mac-system-black.png | Bin 5202 -> 0 bytes docs/static/img/homepage/mac-system-black.svg | 10 + docs/static/img/homepage/mac-system-white.svg | 10 + docs/tailwind.config.js | 2 +- 12 files changed, 320 insertions(+), 35 deletions(-) delete mode 100644 docs/static/img/homepage/mac-system-black.png create mode 100644 docs/static/img/homepage/mac-system-black.svg create mode 100644 docs/static/img/homepage/mac-system-white.svg diff --git a/docs/src/containers/Banner/index.js b/docs/src/containers/Banner/index.js index 00d75467e..3538ab7a9 100644 --- a/docs/src/containers/Banner/index.js +++ b/docs/src/containers/Banner/index.js @@ -5,6 +5,7 @@ import { useAppRelease } from '@site/src/hooks/useAppRelease' import { AiOutlineGithub, AiOutlineTwitter } from 'react-icons/ai' import { BiLogoDiscordAlt } from 'react-icons/bi' +import { FaLinkedin } from 'react-icons/fa' const socials = [ { @@ -19,6 +20,10 @@ const socials = [ icon: , href: 'https://github.com/janhq/jan', }, + { + icon: , + href: 'https://www.linkedin.com/company/janframework/', + }, ] export default function AnnoncementBanner() { diff --git a/docs/src/containers/Footer/index.js b/docs/src/containers/Footer/index.js index b300f992a..5318a339b 100644 --- a/docs/src/containers/Footer/index.js +++ b/docs/src/containers/Footer/index.js @@ -34,25 +34,34 @@ const socials = [ const menus = [ { - name: 'For Developers', + name: 'Product', child: [ { menu: 'Documentation', path: '/developer', }, { - menu: 'Hardware', - path: '/hardware', + menu: 'Changelog', + path: 'https://github.com/janhq/jan/releases', + external: true, + }, + ], + }, + { + name: 'For Developers', + child: [ + { + menu: 'Guides', + path: '/guides', + }, + { + menu: 'Developer', + path: '/developer', }, { menu: 'API Reference', path: '/api-reference', }, - { - menu: 'Changelog', - path: 'https://github.com/janhq/jan/releases', - external: true, - }, ], }, { @@ -149,12 +158,12 @@ export default function Footer() {