Skip to content

feat: add spline landing page and chat palette#70

Open
Nikhi-l wants to merge 1 commit intomainfrom
codex/create-landing-page-with-spline-design-q7rq6o
Open

feat: add spline landing page and chat palette#70
Nikhi-l wants to merge 1 commit intomainfrom
codex/create-landing-page-with-spline-design-q7rq6o

Conversation

@Nikhi-l
Copy link
Owner

@Nikhi-l Nikhi-l commented Aug 30, 2025

Summary

  • add Spline-powered landing page with Try Demo button linking to chat
  • apply extracted green color palette to chat bubbles and highlights
  • fix accessibility in webset table header and clean up Google token refresh

Testing

  • pnpm lint
  • pnpm test (fails: This module cannot be imported from a Client Component module)

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

@vercel
Copy link

vercel bot commented Aug 30, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
cerch_ai Ready Ready Preview Comment Aug 30, 2025 8:54am

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 +20
import Link from 'next/link';
import Spline from '@splinetool/react-spline/next';

export default function Home() {
return (
<main className="w-full h-screen relative bg-white">
<Spline
className="size-full"
scene="https://prod.spline.design/DS0UgrDOifhNt9T6/scene.splinecode"
/>
<div className="absolute inset-0 flex items-center justify-center">
<Link
href="/chat"
className="px-6 py-3 rounded-lg text-white bg-[var(--deep-sea-green)] hover:bg-[var(--tiber)] transition-colors"
>
Try Demo
</Link>
</div>
</main>
);

Choose a reason for hiding this comment

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

[P1] Keep chat helpers in sync with new /chat route

The new landing page at app/page.tsx removes the chat UI from / but there is no redirect or compatibility shim for callers that still assume the home route opens a chat session. Existing Playwright helpers (tests/pages/chat.ts#createNewChat) and login tests navigate to '/' and assert the chat textbox is present, so they will now land on this Spline scene and fail. Either redirect unauthenticated users from / to /chat or update the tests/helpers to use /chat directly so automated flows keep passing.

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