You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The form inputs, select, and textarea elements are missing the name attribute. Without name attributes, the browser will not include their values in the form submission payload, resulting in an empty submission. Additionally, using action="mailto:..." is highly unreliable across different browsers and devices; consider replacing it with a proper API route or Next.js Server Action to handle submissions securely and reliably.
The path parameter passed to handleDeleteEvent is undefined because pathname is not included in the argument payload or dependencies. Pass pathname as the second argument when invoking handleDeleteEvent.
Why: The path parameter used when calling handleDeleteEvent requires pathname from usePathname(), but pathname was removed from the useCallback dependency array and is no longer being passed correctly in the component usage.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
User description
Description
docs(marketing): add GTM plan and design consistency specifications
feat(brand): add Stitch-generated master CorpConnect icon asset
feat(brand): add App Router vector SVG favicon and icon.png
style(layout): add Material Symbols font stylesheet to root layout
feat(theme): convert nx-* design tokens to theme-aware CSS custom properties
feat(theme): update Tailwind color tokens to reference CSS custom properties
fix(header): temporarily hide ThemeToggle until demo-path migration completes
fix(auth): remove emoji and update font class to font-headline
fix(onboarding): remove emoji from welcome title
fix(dashboard): replace emoji with Shield icon on admin console button
style(messaging): use nx-surface-container-low token for sidebar background
fix(pitches): remove emoji from pitch saved modal title
fix(pitches): remove emoji from approved pitch status badge
fix(feedback): replace celebration emoji with CheckCircle2 icon
fix(events): replace native alert with sonner toast and use router.refresh
refactor(billing): remove legacy billing.css stylesheet
refactor(billing): rebuild PricingPlans component on nx-* design tokens
refactor(billing): rebuild billing management page using nx-* design tokens
feat(marketing): add Contact Sales & Request Demo page
feat(marketing): add Privacy Policy page
feat(marketing): add Terms of Service page
fix(marketing): fix broken signup links on About page
fix(marketing): update Contact Sales CTA link to point to contact route
fix(marketing): update homepage CTA links and replace search placeholder
fix(navigation): update footer links to active marketing and auth routes
PR Type
Enhancement, Bug fix, Documentation
Description
Migrated
nx-*design tokens to theme-aware CSS custom properties in Tailwind and CSS.Rebuilt the billing page and pricing plans using the new design tokens, removing legacy CSS.
Added Contact, Privacy, and Terms marketing pages and updated navigation links.
Replaced native alerts with
sonnertoasts and removed emojis from UI components.Diagram Walkthrough
File Walkthrough
4 files
Rebuild billing page using `nx-*` design tokensAdd Contact Sales & Support pageRebuild pricing plans component on `nx-*` tokensUpdate footer links to active marketing and auth routes3 files
Update Tailwind color tokens to reference CSS custom propertiesForce light theme in ThemeProviderAdd CSS custom properties for light/dark themes3 files
Add Privacy Policy pageAdd Terms of Service pageAdd Go-To-Market plan document5 files
Update CTA links and search placeholder on homepageFix broken signup links on About pageReplace native alert with `sonner` toastTemporarily hide ThemeToggleUpdate Contact Sales CTA link7 files
Remove emoji from approved status badgeReplace emoji with Shield icon on admin buttonRemove emoji from pitch saved modalReplace celebration emoji with CheckCircle2 iconUse `nx-surface-container-low` for sidebar backgroundRemove emoji from welcome titleRemove emoji and update font class2 files