refactor: remove all legacy files

+ comment/delete things that haven't yet migrated to mantine
This commit is contained in:
Sonny
2024-11-07 00:29:58 +01:00
committed by Sonny
parent 861906d29b
commit 5c37fe9c31
148 changed files with 469 additions and 4728 deletions

View File

@@ -1,9 +1,9 @@
import { Container, Text, Title } from '@mantine/core';
import { ReactNode } from 'react';
import { useTranslation } from 'react-i18next';
import { FeatureList } from '~/mantine/components/home/feature_list';
import { MantineContentLayout } from '~/mantine/layouts/mantine_content_layout';
import { FeatureList } from '~/components/home/feature_list';
import classes from './home.module.css';
import { ContentLayout } from '~/layouts/content_layout';
function HomePage() {
const { t } = useTranslation('about');
@@ -22,5 +22,5 @@ function HomePage() {
);
}
HomePage.layout = (page: ReactNode) => <MantineContentLayout children={page} />;
HomePage.layout = (page: ReactNode) => <ContentLayout children={page} />;
export default HomePage;