refactor: remove unused and legacy code

- remove legacy migrations
- remove unused server code
- remove unused UI code
This commit is contained in:
Carlos Valente
2025-03-07 23:02:32 +01:00
committed by arc-alex
parent fe8bbd5003
commit 977c99e587
49 changed files with 64 additions and 1083 deletions
@@ -12,7 +12,7 @@ interface SectionProps {
export default memo(Section);
export function Section(props: SectionProps) {
function Section(props: SectionProps) {
const { category, content, title, status } = props;
const sectionClasses = cx(['section', category === 'now' && 'section--now']);