This commit is contained in:
Face
2025-08-03 13:23:44 +03:00
parent 823149057a
commit cf43bac2cf
56 changed files with 19002 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
}

12
docs/src/pages/index.tsx Normal file
View File

@@ -0,0 +1,12 @@
import {useEffect} from 'react';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
export default function Home() {
const {siteConfig} = useDocusaurusContext();
useEffect(() => {
window.location.replace('/docs/intro');
}, []);
return null;
}

View File

@@ -0,0 +1,7 @@
---
title: Markdown page example
---
# Markdown page example
You don't need React to write simple standalone pages.