This commit is contained in:
2023-04-25 21:47:52 +03:00
parent 381be36b6c
commit 8628895632
25 changed files with 13205 additions and 9118 deletions

View File

@@ -0,0 +1,5 @@
const Loading = () => (
<div>Грузится бля!</div>
);
export default Loading;

View File

@@ -10,7 +10,7 @@
&__Release
background-color: #ab1bff
&__Frozen
&__Freeze
background-color: #19b3a6
&__Dropped

View File

@@ -1,4 +1,3 @@
import React from "react";
import { capitalize } from "../../utils";
import './ProjectStatusBadge.sass';
@@ -8,7 +7,7 @@ type Props = {
const localized = {
development: 'В разработке',
release: 'Готово',
frozen: 'Заморожено',
freeze: 'Заморожено',
dropped: 'Брошено'
}

View File

@@ -6,7 +6,7 @@ import './ProjectCard.sass';
type Props = {
title: string
status?: 'development' | 'release' | 'frozen' | 'dropped'
status?: 'development' | 'release' | 'freeze' | 'dropped'
links?: ProjectLinkType[]
stack?: ProjectStack[]
children?: React.ReactNode