Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /** * Intro screen components export * @module components/intro * @category Game Components */ // Main screen export { IntroScreen } from "./IntroScreen"; // ✅ SIMPLIFIED: Remove section re-exports since they're now standalone screens // Components - only export actual components, not sections export { default as ArchetypeDisplay } from "./components/ArchetypeDisplay"; export { MenuSection } from "./components/MenuSection"; // Type exports export type { ArchetypeDisplayProps } from "./components/ArchetypeDisplay"; export type { MenuSectionProps } from "./components/MenuSection"; export type { IntroScreenProps } from "./IntroScreen"; export { PhilosophySection } from "../screens/PhilosophySection"; export type { PhilosophySectionProps } from "../screens/PhilosophySection"; export { default as Intro } from "./IntroScreen"; |