Css overhaul

This commit is contained in:
Reece
2025-06-06 17:20:06 +01:00
parent 0c76bf2c8b
commit b1584151ba
10 changed files with 810 additions and 152 deletions
+14 -2
View File
@@ -1,6 +1,18 @@
import './index.css';
import React from 'react';
import { MantineProvider } from '@mantine/core';
import { mantineTheme } from './theme/mantineTheme';
import HomePage from './pages/HomePage';
// Import global styles
import './styles/theme.css';
import './styles/tailwind.css';
import './styles/components.css';
import './index.css';
export default function App() {
return <HomePage/>;
return (
<MantineProvider theme={mantineTheme}>
<HomePage />
</MantineProvider>
);
}