Skip to content

feat: add marketing landing flow#77

Open
Nikhi-l wants to merge 2 commits intomainfrom
codex/implement-landing-page-animations-and-navigation-c1c7sg
Open

feat: add marketing landing flow#77
Nikhi-l wants to merge 2 commits intomainfrom
codex/implement-landing-page-animations-and-navigation-c1c7sg

Conversation

@Nikhi-l
Copy link
Owner

@Nikhi-l Nikhi-l commented Sep 9, 2025

Summary

  • add client-side transition from hero page to static marketing page
  • wire CTA links to login
  • document flow in PRD

Testing

  • pnpm lint app/page.tsx public/landing.html docs/prd/landing-page-flow.md
  • pnpm test (fails: This module cannot be imported from a Client Component module)

https://chatgpt.com/codex/tasks/task_e_68bfb30f2ebc8324bfc207d8f6cbfaa8

@vercel
Copy link

vercel bot commented Sep 9, 2025

@Nikhi-l is attempting to deploy a commit to the Nikhil's projects team on Vercel, but is not a member of this team. To resolve this issue, you can:

  • Make your repository public. Collaboration is free for open source and public repositories.
  • Upgrade to pro and add @Nikhi-l as a member. A Pro subscription is required to access Vercel's collaborative features.
    • If you're the owner of the team, click here to upgrade and add @Nikhi-l as a member.
    • If you're the user who initiated this build request, click here to request access.
    • If you're already a member of the Nikhil's projects team, make sure that your Vercel account is connected to your GitHub account.

To read more about collaboration on Vercel, click here.

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codex Review: Here are some suggestions.

Reply with @codex fix comments to fix any unresolved comments.

About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you open a pull request for review, mark a draft as ready, or comment "@codex review". If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex fix this CI failure" or "@codex address that feedback".

Comment on lines +1 to +7
'use client';

import { useEffect, useState } from 'react';
import { useRouter } from 'next/navigation';
import Spline from '@splinetool/react-spline/next';
import { Button } from '@/components/ui/button';
import { cn } from '@/lib/utils';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P1] Import server-only Spline variant in client component

After converting the home page to a client component ('use client'), the file still imports @splinetool/react-spline/next. The /next build relies on server-only APIs such as useServerInsertedHTML and cannot be bundled into a client component, which is why the test run now fails with “This module cannot be imported from a Client Component module.” Swap to the client-safe package (@splinetool/react-spline) or lazily load the component so the client page can compile.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant