Merge remote-tracking branch 'origin/master'

This commit is contained in:
Timur
2025-03-01 23:37:09 +03:00
4 changed files with 77 additions and 66 deletions
+66 -62
View File
@@ -1,77 +1,81 @@
import {themes as prismThemes} from 'prism-react-renderer'; import { themes as prismThemes } from "prism-react-renderer";
import type {Config} from '@docusaurus/types'; import type { Config } from "@docusaurus/types";
import type * as Preset from '@docusaurus/preset-classic'; import type * as Preset from "@docusaurus/preset-classic";
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...) // This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
const config: Config = { const config: Config = {
title: 'DataRush', title: "DataRush",
tagline: 'Изучите основы анализа данных здесь!', tagline: "Изучите основы анализа данных здесь!",
favicon: 'https://prod-team-15-2pc0i3lc.final.prodcontest.ru/dr.svg', favicon: "https://prod-team-15-2pc0i3lc.final.prodcontest.ru/dr.svg",
url: 'https://prod-team-15-2pc0i3lc.final.prodcontest.ru', url: "https://prod-team-15-2pc0i3lc.final.prodcontest.ru",
baseUrl: '/docs/', baseUrl: "/docs/",
organizationName: 'megazord', organizationName: "megazord",
projectName: 'megazord', projectName: "megazord",
onBrokenLinks: 'throw', onBrokenLinks: "throw",
onBrokenMarkdownLinks: 'warn', onBrokenMarkdownLinks: "warn",
i18n: { i18n: {
defaultLocale: 'ru', defaultLocale: "ru",
locales: ['ru'], locales: ["ru"],
},
presets: [
[
'classic',
{
docs: {},
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
themeConfig: {
image: 'https://prod-team-15-2pc0i3lc.final.prodcontest.ru/dr.svg',
navbar: {
title: 'DataRush',
logo: {
alt: 'DataRush',
src: 'https://prod-team-15-2pc0i3lc.final.prodcontest.ru/dr.svg',
},
items: [
{
type: 'docSidebar',
sidebarId: 'defaultSidebar',
position: 'left',
label: 'Документация',
},
],
}, },
footer: {
style: 'dark', presets: [
links: [ [
{ "classic",
title: 'Документация',
items: [
{ {
label: 'Начало', docs: {
to: '/docs/intro', routeBasePath: "/",
},
theme: {
customCss: "./src/css/custom.css",
},
} satisfies Preset.Options,
],
],
themeConfig: {
image: "https://prod-team-15-2pc0i3lc.final.prodcontest.ru/dr.svg",
navbar: {
title: "DataRush",
logo: {
alt: "DataRush",
src: "https://prod-team-15-2pc0i3lc.final.prodcontest.ru/dr.svg",
}, },
], items: [
{
type: "docSidebar",
sidebarId: "defaultSidebar",
position: "left",
label: "Документация",
},
],
}, },
], footer: {
copyright: `Создано для Megazord ♥`, style: "dark",
}, links: [
prism: { {
theme: prismThemes.github, title: "Документация",
darkTheme: prismThemes.dracula, items: [
}, {
} satisfies Preset.ThemeConfig, label: "Начало",
to: "/intro",
},
],
},
],
copyright: `Создано для Megazord ♥`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
staticDirectories: ["static"],
}; };
export default config; export default config;
@@ -1,10 +1,17 @@
const DataRush = ({ size = 52 }: { size?: number }) => { const DataRush = ({
size = 52,
className,
}: {
size?: number;
className?: string;
}) => {
return ( return (
<svg <svg
height={size} height={size}
viewBox="0 0 149 52" viewBox="0 0 149 52"
fill="none" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
className={className}
> >
<rect width="149" height="52" fill="#333333" /> <rect width="149" height="52" fill="#333333" />
<path <path
+2 -2
View File
@@ -17,8 +17,8 @@ const LoginPage = () => {
}, []); }, []);
return ( return (
<div className="flex h-screen flex-col items-center gap-10 px-4 py-10 sm:gap-18 sm:py-18"> <div className="flex flex-col items-center gap-10 px-4 py-10 sm:gap-18 sm:py-18">
<DataRush size={52} /> <DataRush size={52} className="min-h-[52px]" />
<div className="flex w-full max-w-96 flex-col items-center gap-7"> <div className="flex w-full max-w-96 flex-col items-center gap-7">
<h1 className="text-center text-4xl font-semibold"> <h1 className="text-center text-4xl font-semibold">
Добро пожаловать! Добро пожаловать!
@@ -6,7 +6,7 @@ const NavbarLayout = () => {
<> <>
<Header /> <Header />
<div className="px-4 sm:px-6"> <div className="px-4 sm:px-6">
<div className="m-auto mt-6 w-full max-w-5xl"> <div className="m-auto my-6 w-full max-w-5xl">
<Outlet /> <Outlet />
</div> </div>
</div> </div>