2025-07-04 17:37:43 +01:00
|
|
|
import React from 'react';
|
2025-07-02 11:01:13 +01:00
|
|
|
import { RainbowThemeProvider } from './components/shared/RainbowThemeProvider';
|
2025-05-28 21:43:02 +01:00
|
|
|
import HomePage from './pages/HomePage';
|
2025-07-04 14:33:59 +01:00
|
|
|
import { useOpenedFile } from './hooks/useOpenedFile';
|
2025-07-04 17:37:43 +01:00
|
|
|
import { useBackendInitializer } from './hooks/useBackendInitializer';
|
2025-06-06 17:20:06 +01:00
|
|
|
|
|
|
|
// Import global styles
|
|
|
|
import './styles/tailwind.css';
|
|
|
|
import './index.css';
|
|
|
|
|
2025-07-01 17:42:16 +01:00
|
|
|
import { BackendHealthIndicator } from './components/BackendHealthIndicator';
|
2025-06-09 10:04:40 +01:00
|
|
|
|
2025-05-28 21:43:02 +01:00
|
|
|
export default function App() {
|
2025-07-04 14:33:59 +01:00
|
|
|
const { openedFilePath, loading: fileLoading } = useOpenedFile();
|
2025-07-04 17:37:43 +01:00
|
|
|
|
|
|
|
// Initialize backend on app startup
|
|
|
|
useBackendInitializer();
|
2025-06-09 10:04:40 +01:00
|
|
|
return (
|
|
|
|
<div className="min-h-screen bg-gray-100">
|
2025-07-01 17:42:16 +01:00
|
|
|
<div className="bg-white shadow-sm border-b relative">
|
|
|
|
<BackendHealthIndicator className="absolute top-3 left-3 z-10" />
|
|
|
|
<div className="max-w-4xl mx-auto px-4 py-3">
|
|
|
|
<h1 className="text-xl font-bold">Stirling PDF</h1>
|
2025-06-09 10:04:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2025-07-01 18:03:23 +01:00
|
|
|
<RainbowThemeProvider>
|
2025-07-04 14:33:59 +01:00
|
|
|
<HomePage openedFilePath={openedFilePath} />
|
2025-07-01 18:03:23 +01:00
|
|
|
</RainbowThemeProvider>
|
2025-06-09 10:04:40 +01:00
|
|
|
</div>
|
|
|
|
);
|
2025-05-28 21:43:02 +01:00
|
|
|
}
|