mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
# Description of Changes Move frontend code into `core` folder and add infrastructure for `proprietary` folder to include premium, non-OSS features
25 lines
711 B
TypeScript
25 lines
711 B
TypeScript
import { Suspense } from "react";
|
|
import { AppProviders } from "@app/components/AppProviders";
|
|
import { LoadingFallback } from "@app/components/shared/LoadingFallback";
|
|
import HomePage from "@app/pages/HomePage";
|
|
import OnboardingTour from "@app/components/onboarding/OnboardingTour";
|
|
|
|
// Import global styles
|
|
import "@app/styles/tailwind.css";
|
|
import "@app/styles/cookieconsent.css";
|
|
import "@app/styles/index.css";
|
|
|
|
// Import file ID debugging helpers (development only)
|
|
import "@app/utils/fileIdSafety";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Suspense fallback={<LoadingFallback />}>
|
|
<AppProviders>
|
|
<HomePage />
|
|
<OnboardingTour />
|
|
</AppProviders>
|
|
</Suspense>
|
|
);
|
|
}
|