Skip to content

Conversation

@shaikrasheed6341
Copy link

@shaikrasheed6341 shaikrasheed6341 commented Dec 11, 2025

Consistent UX- Users experience the same navbar design across all pages
Better Performance- Navbar in layout prevents re-mounting on navigation
Modern Design - Floating navbar with backdrop blur creates premium feel

Summary by CodeRabbit

  • New Features

    • Navigation bar now appears on landing pages
  • Style

    • Updated navbar styling for consistent appearance across pages
    • Increased vertical spacing above header content

✏️ Tip: You can customize this high-level summary in your review settings.

@vercel
Copy link

vercel bot commented Dec 11, 2025

@shaikrasheed6341 is attempting to deploy a commit to the AJEET PRATAP SINGH's projects Team on Vercel.

A member of the Team first needs to authorize it.

@cla-assistant
Copy link

cla-assistant bot commented Dec 11, 2025

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

1 similar comment
@cla-assistant
Copy link

cla-assistant bot commented Dec 11, 2025

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 11, 2025

Walkthrough

This pull request integrates a Navbar component into the landing page layout and updates styling across related UI components. The Navbar's conditional className logic is replaced with a fixed styling configuration, and spacing adjustments are applied to the Header. A whitespace cleanup is included in the pricing page.

Changes

Cohort / File(s) Summary
Landing page integration
apps/web/src/app/(main)/(landing)/layout.tsx
Adds import of Navbar component and renders <Navbar /> within the Layout before {children}, integrating the navigation into the landing page.
Navbar styling refactor
apps/web/src/components/landing-sections/navbar.tsx
Replaces conditional className composition that varied based on isPricingPage with a fixed, explicit className string. Removes dynamic layout branches and applies consistent fixed, rounded-top styling unconditionally.
Header spacing adjustment
apps/web/src/components/ui/header.tsx
Adds top margin (mt-28) to the header container class for increased vertical spacing.
Pricing page formatting
apps/web/src/app/(main)/(landing)/pricing/page.tsx
Whitespace/formatting adjustment in buttonClassName template literal; no semantic changes to class composition.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

  • Navbar styling logic simplification may warrant verification that the removed conditional branches (isPricingPage logic) don't break pricing page appearance
  • Layout integration should confirm the Navbar renders correctly before {children} without layout shifts
  • Spacing adjustment to Header should be visually verified to ensure proper viewport alignment

Possibly related PRs

Poem

🐰 The navbar hops into place with style so fine,
No more jumping conditions—fixed layouts align.
Headers dance with spacing, breathing room they gain,
A tidier page awaits the web's domain.

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Add Navbar navigation to Pricing page' accurately describes the main change: adding a Navbar component to the landing layout which makes it available on the Pricing page and other landing pages.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (2)
apps/web/src/app/(main)/(landing)/layout.tsx (1)

3-10: Add explicit return type to Layout function.

The Layout function lacks an explicit return type. As per coding guidelines, define a type when defining const functions.

Apply this diff:

-const Layout = ({ children }: { children: React.ReactNode }) => {
+const Layout = ({ children }: { children: React.ReactNode }): React.ReactElement => {
apps/web/src/components/landing-sections/navbar.tsx (1)

2-9: Reorder imports to follow project guidelines.

The imports should be organized as: React → third-party → local components → utils → types. Currently, framer-motion (third-party) appears after local components.

Apply this diff to correct the import order:

 "use client";
 import React, { useState } from "react";
-import PrimaryButton from "../ui/custom-button";
 import { motion, useScroll, useMotionValueEvent } from "framer-motion";
 import Image from "next/image";
 import { Terminal, Github, Menu, X } from "lucide-react";
 import Link from "next/link";
 import { usePathname } from "next/navigation";
+import PrimaryButton from "../ui/custom-button";
 import { cn } from "@/lib/utils";
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 050e439 and b22a6a7.

📒 Files selected for processing (4)
  • apps/web/src/app/(main)/(landing)/layout.tsx (1 hunks)
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx (1 hunks)
  • apps/web/src/components/landing-sections/navbar.tsx (1 hunks)
  • apps/web/src/components/ui/header.tsx (1 hunks)
🧰 Additional context used
📓 Path-based instructions (10)
**/*.{ts,tsx,js,jsx}

📄 CodeRabbit inference engine (.cursorrules)

**/*.{ts,tsx,js,jsx}: Always use lowercase when writing comments
Avoid unnecessary comments; code should be self-documenting when possible
Use comments to explain 'why', not 'what'
Remove unused imports
Use UPPER_SNAKE_CASE for constants
Use camelCase for functions and variables

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
apps/web/src/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursorrules)

apps/web/src/**/*.{ts,tsx}: Always follow the design system defined in apps/web/src/lib/design-tokens.ts and apps/web/tailwind.config.ts
NEVER use hardcoded hex values (e.g., #5519f7) directly in components; ALWAYS reference colors from the design token system using Tailwind classes
Use semantic color names that describe purpose, not appearance
Use font-sans for standard UI text (Geist Sans) and font-mono for code, technical content, or monospace needs (DM Mono)
Follow Tailwind's spacing scale (0.25rem increments); for section padding use mobile p-4 (1rem) and desktop p-[60px]
Use appropriate border radius: small elements rounded-lg, medium rounded-xl, large rounded-2xl, buttons rounded-[16px]
Use animation durations: fast duration-100 (0.1s), normal duration-300 (0.3s), slow duration-600 (0.6s)

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
**/*.{tsx,ts}

📄 CodeRabbit inference engine (.cursorrules)

**/*.{tsx,ts}: Prefer functional components with TypeScript and use proper TypeScript types, avoid any
Extract reusable logic into custom hooks
Use descriptive prop names and define prop types using TypeScript interfaces or types
Prefer controlled components over uncontrolled
Use zustand for global state (located in src/store/)
Use absolute imports from @/ prefix when available
Include proper aria labels for accessibility
Ensure keyboard navigation works
Maintain proper heading hierarchy
Provide alt text for images
Avoid unnecessary re-renders

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
**/*.{tsx,ts,jsx,js}

📄 CodeRabbit inference engine (.cursorrules)

Organize imports: react → third-party → local components → utils → types

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursorrules)

**/*.{ts,tsx}: Use PascalCase for types and interfaces with descriptive names
Use dynamic imports for code splitting when appropriate
Memoize expensive computations

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
apps/web/src/**/*.{tsx,ts}

📄 CodeRabbit inference engine (.cursorrules)

Optimize images using next/image

apps/web/src/**/*.{tsx,ts}: Use Zustand for global state, located in src/store/
Use PascalCase for types and interfaces with descriptive names
Use dynamic imports for code splitting when appropriate
Optimize images using next/image
Memoize expensive computations
Define a type when defining const functions

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
**/*.{js,jsx,ts,tsx,py,java,go,rb,php}

📄 CodeRabbit inference engine (.cursor/rules/general_rules.mdc)

**/*.{js,jsx,ts,tsx,py,java,go,rb,php}: Always use lowercase when writing comments
Avoid unnecessary comments; code should be self-documenting when possible
Use comments to explain 'why', not 'what'

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
apps/web/src/components/**/*.{tsx,ts,jsx,js}

📄 CodeRabbit inference engine (apps/web/.cursor/rules/frontend_rules.mdc)

apps/web/src/components/**/*.{tsx,ts,jsx,js}: Never use hardcoded hex values directly in components; always reference colors from the design token system using Tailwind classes
Use semantic color names from the design token system that describe purpose, not appearance (e.g., bg-brand-purple, bg-surface-primary, text-text-primary)
Use font-sans for standard UI text (Geist Sans) and font-mono for code, technical content, or monospace needs (DM Mono)
Follow Tailwind's spacing scale for section padding: p-4 (1rem) on mobile, p-[60px] on desktop
Use rounded-lg (0.5rem) for small elements, rounded-xl (1rem) for medium elements, rounded-2xl (1.5rem) for large elements, and rounded-[16px] for buttons
Use duration-100 (0.1s) for fast transitions, duration-300 (0.3s) for normal transitions, and duration-600 (0.6s) for slow transitions
Use available custom animations: animate-accordion-down, animate-accordion-up, animate-scrollRight, animate-scrollLeft, animate-customspin, animate-spin-slow, animate-spin-slow-reverse, animate-marquee, animate-marquee-vertical, animate-shine
Prefer functional components with TypeScript
Extract reusable logic into custom hooks
Prefer controlled components over uncontrolled
Include proper aria labels for accessibility
Ensure keyboard navigation works in interactive components
Maintain proper heading hierarchy in page components
Provide alt text for images
Use 'class:' instead of the ternary operator in class tags whenever possible
Implement accessibility features on interactive elements (e.g., tabindex='0', aria-label, onClick, onKeyDown)
Always follow the design system defined in apps/web/src/lib/design-tokens.ts and apps/web/tailwind.config.ts

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/components/ui/header.tsx
apps/web/src/components/**/*.{tsx,ts}

📄 CodeRabbit inference engine (apps/web/.cursor/rules/frontend_rules.mdc)

apps/web/src/components/**/*.{tsx,ts}: Use proper TypeScript types and avoid using any type
Use descriptive prop names and define prop types using TypeScript interfaces or types
Name components using PascalCase (e.g., UserProfile.tsx)

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/components/ui/header.tsx
apps/web/src/**/*.{tsx,ts,jsx,js}

📄 CodeRabbit inference engine (apps/web/.cursor/rules/frontend_rules.mdc)

apps/web/src/**/*.{tsx,ts,jsx,js}: Organize imports in order: React → third-party → local components → utils → types
Use absolute imports from @/ prefix when available
Remove unused imports
Use UPPER_SNAKE_CASE for constants
Use camelCase for functions and variables
Always use Tailwind classes for styling HTML elements; avoid using CSS or style tags
Use descriptive variable and function names; name event functions with a 'handle' prefix (e.g., handleClick, handleKeyDown)
Use const with arrow functions instead of function declarations (e.g., 'const toggle = () =>')

Files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
🧠 Learnings (10)
📚 Learning: 2025-11-25T07:35:19.071Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: apps/web/.cursor/rules/frontend_rules.mdc:0-0
Timestamp: 2025-11-25T07:35:19.071Z
Learning: Applies to apps/web/src/components/**/*.{tsx,ts,jsx,js} : Use 'class:' instead of the ternary operator in class tags whenever possible

Applied to files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
📚 Learning: 2025-11-25T07:35:19.071Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: apps/web/.cursor/rules/frontend_rules.mdc:0-0
Timestamp: 2025-11-25T07:35:19.071Z
Learning: Applies to apps/web/src/components/**/*.{tsx,ts,jsx,js} : Maintain proper heading hierarchy in page components

Applied to files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
📚 Learning: 2025-11-25T07:35:19.071Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: apps/web/.cursor/rules/frontend_rules.mdc:0-0
Timestamp: 2025-11-25T07:35:19.071Z
Learning: Applies to apps/web/src/**/*.{tsx,ts,jsx,js} : Always use Tailwind classes for styling HTML elements; avoid using CSS or style tags

Applied to files:

  • apps/web/src/components/landing-sections/navbar.tsx
📚 Learning: 2025-11-25T07:34:30.473Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: .cursorrules:0-0
Timestamp: 2025-11-25T07:34:30.473Z
Learning: Applies to **/*.{tsx,ts} : Maintain proper heading hierarchy

Applied to files:

  • apps/web/src/components/landing-sections/navbar.tsx
  • apps/web/src/components/ui/header.tsx
  • apps/web/src/app/(main)/(landing)/layout.tsx
📚 Learning: 2025-11-25T07:35:19.071Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: apps/web/.cursor/rules/frontend_rules.mdc:0-0
Timestamp: 2025-11-25T07:35:19.071Z
Learning: Applies to apps/web/src/components/**/*.{tsx,ts} : Name components using PascalCase (e.g., UserProfile.tsx)

Applied to files:

  • apps/web/src/components/landing-sections/navbar.tsx
📚 Learning: 2025-11-25T07:34:30.473Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: .cursorrules:0-0
Timestamp: 2025-11-25T07:34:30.473Z
Learning: Applies to apps/web/src/**/*.{ts,tsx} : Use appropriate border radius: small elements `rounded-lg`, medium `rounded-xl`, large `rounded-2xl`, buttons `rounded-[16px]`

Applied to files:

  • apps/web/src/components/landing-sections/navbar.tsx
📚 Learning: 2025-11-25T07:35:19.071Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: apps/web/.cursor/rules/frontend_rules.mdc:0-0
Timestamp: 2025-11-25T07:35:19.071Z
Learning: Applies to apps/web/src/components/**/*.{tsx,ts,jsx,js} : Always follow the design system defined in `apps/web/src/lib/design-tokens.ts` and `apps/web/tailwind.config.ts`

Applied to files:

  • apps/web/src/components/landing-sections/navbar.tsx
📚 Learning: 2025-11-25T07:34:30.473Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: .cursorrules:0-0
Timestamp: 2025-11-25T07:34:30.473Z
Learning: Applies to apps/web/src/**/*.{ts,tsx} : Use semantic color names that describe purpose, not appearance

Applied to files:

  • apps/web/src/app/(main)/(landing)/pricing/page.tsx
📚 Learning: 2025-11-25T07:34:30.473Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: .cursorrules:0-0
Timestamp: 2025-11-25T07:34:30.473Z
Learning: Applies to apps/web/src/**/*.{ts,tsx} : Follow Tailwind's spacing scale (0.25rem increments); for section padding use mobile `p-4` (1rem) and desktop `p-[60px]`

Applied to files:

  • apps/web/src/components/ui/header.tsx
📚 Learning: 2025-11-25T07:35:19.071Z
Learnt from: CR
Repo: apsinghdev/opensox PR: 0
File: apps/web/.cursor/rules/frontend_rules.mdc:0-0
Timestamp: 2025-11-25T07:35:19.071Z
Learning: Applies to apps/web/src/components/**/*.{tsx,ts,jsx,js} : Follow Tailwind's spacing scale for section padding: p-4 (1rem) on mobile, p-[60px] on desktop

Applied to files:

  • apps/web/src/components/ui/header.tsx
🔇 Additional comments (2)
apps/web/src/app/(main)/(landing)/pricing/page.tsx (1)

427-428: Formatting adjustment with no semantic changes.

This is a whitespace-only change within the template literal. No functional impact.

apps/web/src/components/landing-sections/navbar.tsx (1)

51-51: LGTM! Navbar styling simplified to fixed appearance.

The conditional className logic has been replaced with a fixed, explicit styling configuration. This aligns with the PR objective to provide consistent UX across all pages with a floating navbar design featuring backdrop blur. The animation and visibility logic using isPricingPage is correctly preserved.

const Header = ({ title }: { title: string | React.ReactNode }) => {
return (
<div className="px-[30px] py-10 h-[160px] relative overflow-hidden border-b border w-full">
<div className="px-[30px] mt-28 py-10 h-[160px] relative overflow-hidden border-b border w-full">
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check navbar styling and dimensions
fd -t f "navbar" apps/web/src/components/ -x grep -l "fixed"

Repository: apsinghdev/opensox

Length of output: 113


🏁 Script executed:

#!/bin/bash
# Extract navbar styling details
cat -n apps/web/src/components/landing-sections/navbar.tsx | head -80

Repository: apsinghdev/opensox

Length of output: 3631


🏁 Script executed:

#!/bin/bash
# Search for the specific navbar className
rg "className.*fixed" apps/web/src/components/landing-sections/navbar.tsx -A 2 -B 1

Repository: apsinghdev/opensox

Length of output: 353


🏁 Script executed:

#!/bin/bash
# Check design tokens for spacing guidance
cat apps/web/src/lib/design-tokens.ts | head -100

Repository: apsinghdev/opensox

Length of output: 2823


🏁 Script executed:

#!/bin/bash
# Search for other uses of mt-28 or similar large top margins
rg "mt-\[|mt-[0-9]+" apps/web/src/components/ -t tsx -c

Repository: apsinghdev/opensox

Length of output: 89


🏁 Script executed:

#!/bin/bash
# Check if there are other sections with fixed navbar offsets
rg "fixed.*top-" apps/web/src/components/ -t tsx -A 1 | head -20

Repository: apsinghdev/opensox

Length of output: 89


🏁 Script executed:

#!/bin/bash
# Check the header component and surrounding context
cat -n apps/web/src/components/ui/header.tsx

Repository: apsinghdev/opensox

Length of output: 1833


🏁 Script executed:

#!/bin/bash
# Search for other margin usage patterns in web components
rg "mt-\d+" apps/web/src/components/ --type ts --type tsx -o | head -30

Repository: apsinghdev/opensox

Length of output: 89


🏁 Script executed:

#!/bin/bash
# Check where Header component is used to understand context
rg "Header\s*\{" apps/web/src/ --type tsx -B 2 -A 1 | head -40

Repository: apsinghdev/opensox

Length of output: 89


🏁 Script executed:

#!/bin/bash
# Check if there are design/layout guidelines mentioning navbar spacing
fd -type f -name "*.md" apps/web/src/ -exec grep -l "navbar\|spacing\|margin" {} \;

Repository: apsinghdev/opensox

Length of output: 232


🏁 Script executed:

#!/bin/bash
# Search for Header component usage
rg "Header" apps/web/src/components/ -t ts -t tsx -B 1 -A 1 | head -50

Repository: apsinghdev/opensox

Length of output: 89


🏁 Script executed:

#!/bin/bash
# Check tailwind config for spacing scale verification
grep -A 10 "spacing" apps/web/tailwind.config.ts

Repository: apsinghdev/opensox

Length of output: 44


🏁 Script executed:

#!/bin/bash
# Find and check tailwind config
find apps/web -name "tailwind.config.*" -type f

Repository: apsinghdev/opensox

Length of output: 89


🏁 Script executed:

#!/bin/bash
# Check what the standard spacing values are near 30px
cat apps/web/tailwind.config.ts | grep -A 50 "extend" | head -60

Repository: apsinghdev/opensox

Length of output: 1547


🏁 Script executed:

#!/bin/bash
# Verify standard Tailwind spacing scale to confirm px-[30px] violation
cat apps/web/tailwind.config.ts | head -200

Repository: apsinghdev/opensox

Length of output: 6347


🏁 Script executed:

#!/bin/bash
# Check if there are other components using similar patterns
rg "px-\[" apps/web/src/components/ -A 1 -B 1 | head -30

Repository: apsinghdev/opensox

Length of output: 1217


🏁 Script executed:

#!/bin/bash
# Check if px-[30px] pattern is intentional by looking at design system docs
find apps/web/src -name "*.md" -o -name "*.txt" | xargs grep -l "spacing\|padding" 2>/dev/null | head -5

Repository: apsinghdev/opensox

Length of output: 44


🏁 Script executed:

#!/bin/bash
# Check .cursorrules and frontend_rules mentioned in learnings
cat apps/web/.cursor/rules/frontend_rules.mdc

Repository: apsinghdev/opensox

Length of output: 6643


🏁 Script executed:

#!/bin/bash
# Check the border styling in header
grep -n "border-b border" apps/web/src/components/ui/header.tsx

Repository: apsinghdev/opensox

Length of output: 165


🏁 Script executed:

#!/bin/bash
# Check other components to see how they specify border colors
rg "border-b border-" apps/web/src/components/ -t ts -t tsx | head -10

Repository: apsinghdev/opensox

Length of output: 89


🏁 Script executed:

#!/bin/bash
# Check how other components style borders to confirm pattern
rg "border" apps/web/src/components/ui/ -A 0 -B 0 | grep -E "border-" | head -20

Repository: apsinghdev/opensox

Length of output: 3617


Specify the border color class for consistency with the design system.

The border-b border should explicitly reference the design token color: border-b border-border to align with the design system defined in design-tokens.ts.

🤖 Prompt for AI Agents
In apps/web/src/components/ui/header.tsx around line 9, the div uses the generic
Tailwind border classes "border-b border" instead of the design-system token;
change the class to explicitly use the design token by replacing the second
"border" with "border-border" (i.e., "border-b border-border") so the bottom
border color aligns with design-tokens.ts.

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant