diff --git a/servers/nextjs/app/(presentation-generator)/outline/components/OutlinePage.tsx b/servers/nextjs/app/(presentation-generator)/outline/components/OutlinePage.tsx index de5d6f46..c4a70b39 100644 --- a/servers/nextjs/app/(presentation-generator)/outline/components/OutlinePage.tsx +++ b/servers/nextjs/app/(presentation-generator)/outline/components/OutlinePage.tsx @@ -15,7 +15,7 @@ import { useOutlineStreaming } from "../hooks/useOutlineStreaming"; import { useOutlineManagement } from "../hooks/useOutlineManagement"; import { usePresentationGeneration } from "../hooks/usePresentationGeneration"; import TemplateSelection from "./TemplateSelection"; -import { TemplateLayoutsWithSettings } from "@/app/presentation-templates"; +import { TemplateLayoutsWithSettings } from "@/app/presentation-templates/utils"; const OutlinePage: React.FC = () => { const { presentation_id, outlines } = useSelector( diff --git a/servers/nextjs/app/(presentation-generator)/outline/components/TemplateSelection.tsx b/servers/nextjs/app/(presentation-generator)/outline/components/TemplateSelection.tsx index 0edfd63d..eef1ae96 100644 --- a/servers/nextjs/app/(presentation-generator)/outline/components/TemplateSelection.tsx +++ b/servers/nextjs/app/(presentation-generator)/outline/components/TemplateSelection.tsx @@ -1,7 +1,7 @@ "use client"; import React, { useEffect } from "react"; -import { templates, TemplateLayoutsWithSettings } from "@/app/presentation-templates"; +import { templates, TemplateLayoutsWithSettings } from "@/app/presentation-templates/utils"; import { Card } from "@/components/ui/card"; import { TemplateWithData } from "@/app/presentation-templates/utils"; import { CustomTemplates, useCustomTemplateSummaries } from "@/app/hooks/useCustomTemplates"; diff --git a/servers/nextjs/app/(presentation-generator)/outline/hooks/usePresentationGeneration.ts b/servers/nextjs/app/(presentation-generator)/outline/hooks/usePresentationGeneration.ts index dbb15509..9fb1e6eb 100644 --- a/servers/nextjs/app/(presentation-generator)/outline/hooks/usePresentationGeneration.ts +++ b/servers/nextjs/app/(presentation-generator)/outline/hooks/usePresentationGeneration.ts @@ -6,7 +6,7 @@ import { clearPresentationData } from "@/store/slices/presentationGeneration"; import { PresentationGenerationApi } from "../../services/api/presentation-generation"; import { Template, LoadingState, TABS } from "../types/index"; import { MixpanelEvent, trackEvent } from "@/utils/mixpanel"; -import { TemplateLayoutsWithSettings } from "@/app/presentation-templates"; +import { TemplateLayoutsWithSettings } from "@/app/presentation-templates/utils"; import { getCustomTemplateDetails } from "@/app/hooks/useCustomTemplates"; const DEFAULT_LOADING_STATE: LoadingState = { diff --git a/servers/nextjs/app/(presentation-generator)/template-preview/page.tsx b/servers/nextjs/app/(presentation-generator)/template-preview/page.tsx index d594c15a..f0bf6e1e 100644 --- a/servers/nextjs/app/(presentation-generator)/template-preview/page.tsx +++ b/servers/nextjs/app/(presentation-generator)/template-preview/page.tsx @@ -5,7 +5,7 @@ import { Card } from "@/components/ui/card"; import { ExternalLink, Loader2, Plus } from "lucide-react"; import { templates } from "@/app/presentation-templates"; -import type { TemplateLayoutsWithSettings } from "@/app/presentation-templates"; +import type { TemplateLayoutsWithSettings } from "@/app/presentation-templates/utils"; import { TemplateWithData } from "@/app/presentation-templates/utils"; import { useCustomTemplateSummaries,