Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes across multiple files to improve the functionality and user experience of the application. The most significant changes include the addition of new components for the landing page, removal of unused imports, and the implementation of a rate-limited contact creation function.
Component Additions:
apps/landing/app/components/hero.tsx
: Added a newHero
component with dynamic text rotation and waitlist form.apps/landing/app/components/layout/navbar.tsx
: Added a newNavBar
component with social media links.apps/landing/app/components/shared/background-beams-with-collision.tsx
: Added a newBackgroundBeamsWithCollision
component with animated beams and collision detection.apps/landing/app/components/shared/text-morph.tsx
: Added a newTextMorph
component for animating text morphing.apps/landing/app/components/shared/text-scramble.tsx
: Added a newTextScramble
component for animating text scrambling.apps/landing/app/components/wait-list-form.tsx
: Added a newWaitListForm
component for subscribing to the waitlist with email validation and feedback.Code Cleanup:
apps/chat-with-pdf/app/components/sidebar/app-sidebar.tsx
: Removed unused imports to clean up the sidebar component. [1] [2]Configuration Changes:
apps/landing/.eslintrc.json
: Removed the ESLint configuration file.New Functionality:
apps/landing/actions/resend-create-contact.ts
: Implemented a rate-limited function for creating contacts using the Resend API.Component Simplifications:
apps/landing/app/components/layout/nav.tsx
: Simplified theNav
component to directly return theNavbar
component.