Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
385 B
TypeScript
Raw Normal View History

2025-05-28 21:43:02 +01:00
import React from 'react';
2025-06-06 17:20:06 +01:00
import { MantineProvider } from '@mantine/core';
import { mantineTheme } from './theme/mantineTheme';
2025-05-28 21:43:02 +01:00
import HomePage from './pages/HomePage';
2025-06-06 17:20:06 +01:00
// Import global styles
import './styles/tailwind.css';
import './index.css';
2025-05-28 21:43:02 +01:00
export default function App() {
2025-06-06 17:20:06 +01:00
return (
<MantineProvider theme={mantineTheme}>
<HomePage />
</MantineProvider>
);
2025-05-28 21:43:02 +01:00
}