Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d9ce42c
feat: added sveltia cms and new makefile
fuzilogik2019 Jan 7, 2026
f28a28f
chore: enhance homepage with new header and recent tutorials section …
gonferreyra Jan 8, 2026
23fab7e
feat: started tutorials and changelog implementations
fuzilogik2019 Jan 8, 2026
2ed88a9
chore: some bugfixes to tutorials page filters and test changelog
fuzilogik2019 Jan 8, 2026
0332185
chore: more bugfixes to tutorial section
fuzilogik2019 Jan 8, 2026
1f5234d
chore: more bugfixes
fuzilogik2019 Jan 8, 2026
4218896
chore: removed null values from tutorials
fuzilogik2019 Jan 8, 2026
1519f42
chore: added script to generate tutorial index
fuzilogik2019 Jan 9, 2026
d301051
feat: standarized cards for tutorials
fuzilogik2019 Jan 9, 2026
adb752f
chore: more tutorials cards fixes
fuzilogik2019 Jan 9, 2026
41c781b
feat: update homepage header with translations and separate releases …
gonferreyra Jan 9, 2026
1c5e068
chore: added Spanish translations for changelogs and fixed minor issu…
gonferreyra Jan 9, 2026
4535ba6
Merge branch 'develop' of github.com:sleakops/docs into chore/add-not…
gonferreyra Jan 12, 2026
b0e17d1
chore: add notion tutorials
gonferreyra Jan 12, 2026
33d36a2
fix: coderabbit comments
gonferreyra Jan 12, 2026
16421db
chore: add django-celery tutorial
gonferreyra Jan 12, 2026
c511dfd
fix: incorrect data
gonferreyra Jan 12, 2026
393a23d
fix: small coderabits comments
gonferreyra Jan 13, 2026
2f44c6f
fix: table format
gonferreyra Jan 13, 2026
24f4fff
Merge branch 'develop' of github.com:sleakops/docs into chore/add-not…
fuzilogik2019 Jan 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: enhance homepage with new header and recent tutorials section (#…
  • Loading branch information
gonferreyra authored Jan 8, 2026
commit f28a28f17e93c7b3f1a4788dcf5e584f555413ba
131 changes: 78 additions & 53 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,73 +1,73 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion

const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');

/** @type {import('@docusaurus/types').Config} */
const config = {
title: "SleakOps Documentation",
tagline: "SleakOps Documentation",
url: "https://docs.sleakops.com",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
title: 'SleakOps Documentation',
tagline: 'SleakOps Documentation',
url: 'https://docs.sleakops.com',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',

markdown: {
mermaid: true,
},

organizationName: "Craftech",
projectName: "Sleakops",
deploymentBranch: "gh-pages",
organizationName: 'Craftech',
projectName: 'Sleakops',
deploymentBranch: 'gh-pages',
trailingSlash: false,

i18n: {
defaultLocale: "en",
locales: ["en", "es"],
path: "i18n",
defaultLocale: 'en',
locales: ['en', 'es'],
path: 'i18n',
localeConfigs: {
en: {
htmlLang: "en",
label: "English",
htmlLang: 'en',
label: 'English',
},
es: {
htmlLang: "es",
label: "Español",
htmlLang: 'es',
label: 'Español',
},
},
},

// Eliminamos el tema easyops-cn/docusaurus-search-local
themes: ["@docusaurus/theme-mermaid"],
themes: ['@docusaurus/theme-mermaid'],

presets: [
[
"classic",
'classic',
{
debug: false,
theme: {
customCss: [require.resolve("./src/css/custom.css")],
customCss: [require.resolve('./src/css/custom.css')],
},
docs: {
sidebarPath: require.resolve("./sidebars.js"),
routeBasePath: "/",
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/docs',
sidebarCollapsible: true,
sidebarCollapsed: true,
},
blog: {},
pages: {
routeBasePath: "/pages",
routeBasePath: '/',
},
sitemap: {
changefreq: "weekly",
changefreq: 'weekly',
priority: 0.5,
ignorePatterns: ["/tags/**"],
filename: "sitemap.xml",
ignorePatterns: ['/tags/**'],
filename: 'sitemap.xml',
},
googleAnalytics: {
trackingID: "UA-128497858-1",
trackingID: 'UA-128497858-1',
anonymizeIP: true,
},
},
Expand All @@ -77,68 +77,93 @@ const config = {
// Configuración del plugin docusaurus-lunr-search
plugins: [
[
require.resolve("docusaurus-lunr-search"),
require.resolve('docusaurus-lunr-search'),
{
languages: ["en", "es"],
languages: ['en', 'es'],
indexBaseUrl: true,
},
],
],

themeConfig: {
colorMode: {
defaultMode: "dark",
defaultMode: 'dark',
disableSwitch: false,
respectPrefersColorScheme: false,
},
navbar: {
title: "SleakOps",
title: 'SleakOps',
logo: {
alt: "SleakOps",
src: "img/logo.svg",
alt: 'SleakOps2',
src: 'img/logo2.svg',
},
items: [
{
type: "localeDropdown",
position: "left",
label: 'Home',
to: '/',
position: 'left',
},
{
href: "https://console.sleakops.com",
label: "Console",
position: "right",
label: 'Docs',
to: '/docs',
position: 'left',
},
{
label: 'Tutorials',
to: '/tutorials',
position: 'left',
},
{
label: 'Changelog',
to: '/changelog',
position: 'left',
},

{
href: 'https://console.sleakops.com',
label: 'Console',
position: 'right',
},
{
href: 'https://sleakops.com/blog/',
label: 'Blog',
position: 'right',
},
{
type: 'localeDropdown',
position: 'right',
},
],
},
footer: {
style: "dark",
links: [
{
title: "Docs",
title: 'Docs',
items: [
{
label: "Tutorial",
to: "/",
label: 'Tutorial',
to: '/tutorials',
},
{
label: "About us",
href: "https://sleakops.com/",
label: 'About us',
href: 'https://sleakops.com/',
},
{
label: "Contact us",
href: "https://sleakops.com/contact",
label: 'Contact us',
href: 'https://sleakops.com/contact',
},
],
},
{
title: "More",
title: 'More',
items: [
{
label: "Terms & Conditions",
href: "https://craftech.notion.site/Terms-Conditions-efb8d9a980654625af456732ed44b197",
label: 'Terms & Conditions',
href: 'https://craftech.notion.site/Terms-Conditions-efb8d9a980654625af456732ed44b197',
},
{
label: "Privacy Policy",
href: "https://craftech.notion.site/Privacy-Policy-of-SleakOps-55b977da50d84871809879d065b16b3b",
label: 'Privacy Policy',
href: 'https://craftech.notion.site/Privacy-Policy-of-SleakOps-55b977da50d84871809879d065b16b3b',
},
],
},
Expand Down
33 changes: 33 additions & 0 deletions src/components/Homepage/HomepageHeader.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import React from 'react';
import Link from '@docusaurus/Link';
import styles from './HomepageHeader.module.css';

export default function HomepageHeader() {
return (
<header className={styles.heroBanner}>
<div className='container'>
<div className={styles.heroContent}>
<div className={styles.heroText}>
<h1 className={styles.heroTitle}>
Lift your ideas to the Cloud
<br />
Leave the Journey to Us
</h1>
<p className={styles.heroSubtitle}>
Empowering your business with scalable, secure, and efficient
infrastructure solutions.
</p>
</div>
<div className={styles.buttons}>
<Link className={styles.primaryButton} to='/docs'>
Documentation
</Link>
<Link className={styles.secondaryButton} to='/changelog'>
Changelog
</Link>
</div>
</div>
</div>
</header>
);
}
Loading