Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,9 @@ ty = (0.5 - vp.cy) × 100%
| `scripts/sync/AudioSyncer.js` | FFT sync, `syncMultiple` | Add FFT tie-breaking (Phase 0) |
| `scripts/wizard.js` | Interactive pipeline runner (60KB) | Replace with DAG runner (Phase 2) |
| `scripts/camera/setup-camera.js` | Frame extraction, face detection, `angles.json` | |
| `app/(internal)/camera/page.tsx` | Camera GUI (face box editor, angle tabs) | |
| `app/(internal)/editor/page.tsx` | Transcript editor | Add PreviewPlayer + scroll-sync (Phase 8) |
| `app/(internal)/editor/Timeline.tsx` | Timeline component (630 lines) | Decompose + add waveform (Phase 8) |
| `app/components/AutoCarouselForm.tsx` | Carousel generator (810 lines) | Decompose (Phase 8) |
| `app/camera/page.tsx` | Camera GUI (face box editor, angle tabs) | |
| `app/editor/page.tsx` | Transcript editor | Add PreviewPlayer + scroll-sync (Phase 8) |
| `app/editor/Timeline.tsx` | Timeline component (630 lines) | Decompose + add waveform (Phase 8) |
| `app/context/AuthContext.tsx` | Auth context with hardcoded credentials | Fix (Phase 7) |
| `vscode-transcript-language/src/extension.js` | VSCode transcript extension | Add Wrap-in-cut command (Phase 0.5) |

Expand Down
28 changes: 28 additions & 0 deletions app/(public)/page.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from 'react';
import { render } from '@testing-library/react';
import { MantineProvider } from '@mantine/core';
import Home from './page';

jest.mock('../components/Header', () => ({
Header: () => null,
}));

jest.mock('../components/InstagramEmbed', () => ({
InstagramEmbed: () => null,
}));

function renderWithMantine(ui: React.ReactElement) {
return render(<MantineProvider>{ui}</MantineProvider>);
}

describe('Home (landing page)', () => {
it('renders without crashing', () => {
expect(() => renderWithMantine(<Home />)).not.toThrow();
});

it('does not contain a link to /auto-carousel', () => {
const { container } = renderWithMantine(<Home />);
const links = container.querySelectorAll('a[href="/auto-carousel"]');
expect(links).toHaveLength(0);
});
});
64 changes: 6 additions & 58 deletions app/(public)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Container, Title, Text, Stack, Group, Paper, Button, Badge, ThemeIcon, SimpleGrid, Anchor } from '@mantine/core';
import { IconPhoto, IconFileText, IconLeaf, IconSparkles, IconArrowRight, IconBrandYoutube, IconWand, IconLock } from '@tabler/icons-react';
import { IconPhoto, IconFileText, IconLeaf, IconSparkles, IconArrowRight, IconBrandYoutube } from '@tabler/icons-react';
import { Header } from '../components/Header';
import { InstagramEmbed } from '../components/InstagramEmbed';

Expand Down Expand Up @@ -47,7 +47,7 @@ export default function Home() {
</Stack>

{/* Tool Cards */}
<SimpleGrid cols={{ base: 1, sm: 3 }} spacing="lg">
<SimpleGrid cols={{ base: 1, sm: 2 }} spacing="lg">

{/* Carousel Generator Card */}
<Paper p="xl" withBorder radius="lg" style={{ display: 'flex', flexDirection: 'column' }}>
Expand Down Expand Up @@ -108,54 +108,6 @@ export default function Home() {
</Stack>
</Paper>

{/* Auto Carousel Pro Card */}
<Paper
p="xl"
withBorder
radius="lg"
style={{
display: 'flex',
flexDirection: 'column',
borderColor: 'var(--mantine-color-violet-4)',
position: 'relative',
overflow: 'hidden',
}}
>
<Badge
color="violet"
variant="filled"
size="sm"
style={{ position: 'absolute', top: 12, right: 12 }}
>
Pro
</Badge>
<Stack gap="md" style={{ flex: 1 }}>
<Group>
<ThemeIcon size={48} radius="md" variant="light" color="violet">
<IconWand size={24} />
</ThemeIcon>
</Group>
<Title order={4}>Auto Bulk Carousel</Title>
<Text size="sm" c="dimmed" style={{ flex: 1 }}>
Paste a link and let our LLM analyze the transcript to auto-generate
multiple carousels with hooks and CTA slides.
</Text>
<Group gap="xs" wrap="wrap">
<Badge size="xs" variant="dot" color="violet">LLM-powered</Badge>
<Badge size="xs" variant="dot" color="violet">CTA slides</Badge>
</Group>
<Anchor href="/auto-carousel" underline="never">
<Button
fullWidth
size="md"
color="violet"
rightSection={<IconLock size={16} />}
>
Try Auto Carousel
</Button>
</Anchor>
</Stack>
</Paper>
</SimpleGrid>

{/* Example Carousel */}
Expand All @@ -178,16 +130,12 @@ export default function Home() {
</ThemeIcon>
<Title order={3}>Built different. On purpose.</Title>
<Text size="sm" c="dimmed" maw={520}>
Our <strong>Carousel Generator</strong> and <strong>Transcription</strong> tools use <strong>zero AI</strong>.
Our tools use <strong>zero AI</strong>.
We extract what&apos;s already there — your words, your frames, your content. No large
language models burning through energy to rephrase what you already said perfectly.
</Text>
<Text size="sm" c="dimmed" maw={520}>
Our <strong>Auto Bulk Carousel</strong> uses AI minimally — only to analyze transcripts
and suggest segments. The actual content extraction remains AI-free. This approach keeps
our tools <strong>fast, deterministic, and sustainable</strong>. You get exactly what&apos;s
in your video — nothing hallucinated, nothing rewritten. Just your authentic content,
repurposed for every platform.
This keeps our tools <strong>fast, deterministic, and sustainable</strong>. You get
exactly what&apos;s in your video — nothing hallucinated, nothing rewritten. Just your
authentic content, repurposed for every platform.
</Text>
</Stack>
</Paper>
Expand Down
Loading
Loading