Skip to content

update home page#16

Merged
naheel0 merged 1 commit intomainfrom
frontend
Feb 9, 2026
Merged

update home page#16
naheel0 merged 1 commit intomainfrom
frontend

Conversation

@naheel0
Copy link
Contributor

@naheel0 naheel0 commented Feb 9, 2026

🚀 BΞYTΞFLʘW | Pull Request Protocol

PR Type: (Choose one: feat | fix | refactor | docs | perf)
Issue Link: Fixes #


📝 System Summary

Provide a concise brief of the changes introduced to the stream.

🛠️ Technical Changes

  • Logic change in ...
  • New UI component added: ...
  • Database schema updated: ...

🧪 Quality Assurance (QA)

  • Linting: Code style matches the BeyteFlow grid.
  • Build: npm run build executed without errors.
  • Testing: New logic has been verified and tested.
  • Dark Mode: UI is high-contrast and neon-optimized.

🖼️ Visual Evidence

If this PR affects the UI, drop a screenshot or GIF below:


📡 Developer Authorization

  • I have performed a self-review of my code.
  • My changes generate no new warnings in the console.
  • I have updated the documentation (if applicable).

Authorized by: @naheel0
Timestamp: {{ 9/2/2026}}


@naheel0 naheel0 requested a review from adithyanmkd as a code owner February 9, 2026 14:48
@naheel0 naheel0 added the area: frontend Changes specifically for the UI/Tailwind components. label Feb 9, 2026
@vercel
Copy link

vercel bot commented Feb 9, 2026

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

Project Deployment Actions Updated (UTC)
readme-gen-ai Ready Ready Preview, Comment Feb 9, 2026 2:48pm

@coderabbitai
Copy link

coderabbitai bot commented Feb 9, 2026

📝 Walkthrough

Summary by CodeRabbit

  • New Features

    • Added navigation bar with responsive mobile menu and GitHub link.
    • Introduced features showcase section with card-based layout.
    • Added footer with branding and social links.
    • Introduced reusable button component with multiple visual styles.
    • Added terminal mockup display showing sample output.
  • Refactor

    • Restructured page layout using modular component composition for improved organization and maintainability.

Walkthrough

This pull request refactors the main page layout into a component-based architecture. A new lucide-react dependency is added, and the inline UI is restructured to use separate composable components: Navbar, Hero, Features, Footer, and supporting UI elements (Button, TerminalMockup).

Changes

Cohort / File(s) Summary
Dependencies
package.json
Added lucide-react ^0.563.0 dependency for icon rendering throughout the application.
Main Page
src/app/page.tsx
Refactored page layout from inline markup to component-based composition rendering Navbar, Hero, Features, and Footer components with navigation and feature data constants.
Layout Components
src/components/layout/Navbar.tsx, src/components/layout/Footer.tsx
Added fixed responsive Navbar with scroll-driven styling, desktop/mobile menu support, and GitHub link; added Footer with branding, copyright, and GitHub icon.
Section Components
src/components/sections/Hero.tsx, src/components/sections/Features.tsx, src/components/sections/TerminalMockup.tsx
Introduced Hero section with gradient headline and CTA buttons; Features grid component for displaying feature cards; TerminalMockup component displaying a styled terminal UI simulation.
UI Components
src/components/ui/Button.tsx
Added reusable Button component with primary, outline, and ghost variants supporting flexible composition.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

  • add nextjs #2: Both PRs modify package.json and src/app/page.tsx—this PR builds upon the scaffolding with a component-based UI refactor and adds lucide-react dependency.

Suggested reviewers

  • adithyanmkd

Poem

🐰 Components dance in perfect rows,
Buttons click where gradient flows,
A navbar fixed with scrolling grace,
Lucide icons in every place,
The page is born—refactored, bright! ✨

🚥 Pre-merge checks | ❌ 3
❌ Failed checks (2 warnings, 1 inconclusive)
Check name Status Explanation Resolution
Description check ⚠️ Warning The description uses the BeyteFlow PR template but is incomplete and off-topic. It contains template placeholders and checkboxes without actual implementation details, making it unrelated to the actual changeset of adding UI components and refactoring the page layout. Complete the description with actual details about the changes: component additions (Navbar, Hero, Features, Footer), dependency addition (lucide-react), and explain the refactoring from inline UI to component-based composition.
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Title check ❓ Inconclusive The title 'update home page' is vague and generic. While it relates to the changeset (which does update the home page), it lacks specificity about what was changed and doesn't convey meaningful information about the actual modifications. Provide a more specific title that describes the main change, such as 'Refactor home page with component-based layout' or 'Add Navbar, Hero, Features, and Footer components to home page'.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch frontend

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

@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: 7

🤖 Fix all issues with AI agents
In `@src/app/page.tsx`:
- Around line 8-13: navLinks contains entries for 'Examples' and 'Docs' that
point to non-existent section IDs; either remove those objects from the navLinks
array or add corresponding sections with id="examples" and id="docs" to the page
(e.g., create Examples and Docs components and render them alongside Features
which uses id="features"). Update the navLinks constant (remove or comment out
the { name: 'Examples', href: '#examples' } and { name: 'Docs', href: '#docs' }
entries) or add matching section elements/components that export/render elements
with id="examples" and id="docs" so the links work.

In `@src/components/layout/Footer.tsx`:
- Around line 18-24: Footer.tsx contains a non-functional anchor (the <a>
wrapping <Github />) whose href is "#" — replace that href with the real
repository URL (e.g., https://github.com/BeyteFlow/ReadmeGenAI) in the Footer
component, and set appropriate external link attributes (target="_blank" and
rel="noopener noreferrer") and keep the aria-label "GitHub" so the GitHub icon
link is functional and accessible.

In `@src/components/layout/Navbar.tsx`:
- Around line 46-54: The "Star on GitHub" anchor in the Navbar component
currently points to a placeholder URL and will render a broken link; update the
anchor in Navbar (the <a> element rendering the GitHub button) to use the real
repository URL (from a config, env var, or a constant like REPO_URL) instead of
"https://github.com/your-username/ReadmeGenAI", ensure target and rel attributes
remain, and fall back to hiding or disabling the button if no valid URL is
provided.
- Around line 82-84: The "Star our Repo" control renders a <Button> (producing a
<button>) with no navigation handler; replace it with an anchor styled like the
button or wrap the Button in an <a> that points to the GitHub repo (e.g.,
href="https://github.com/your-org/your-repo") and include target="_blank"
rel="noopener noreferrer" for safe external navigation; update the JSX where the
<Button variant="primary" className="w-full justify-center mt-4"> with <Github
size={18} /> Star our Repo is rendered (in Navbar component) so it becomes an
accessible link while preserving the existing classes and icon.

In `@src/components/sections/Hero.tsx`:
- Around line 21-28: The CTA buttons in Hero.tsx (the Button components
rendering "Get Started" and "View Examples" with ArrowRight) have no navigation
or click handlers; either wrap them with Next.js Link (or an <a>) to route to
the intended pages (e.g., <Link href="/get-started"> and <Link
href="/examples">) or add onClick handlers that call the appropriate router.push
paths, and if they are intentionally placeholders add a clear TODO comment above
the Button elements documenting the intended destinations; update the Button
props accordingly (remove conflicting href if Button expects it) and ensure
accessibility attributes (aria-label) are present.
- Line 8: The Tailwind classes w-250 and h-150 in the absolute background div
inside the Hero component are invalid; replace them with arbitrary-value
utilities w-[62.5rem] and h-[37.5rem] in the same className string (the div with
className starting "absolute top-0 left-1/2 ...") so Tailwind generates the
correct width and height.

In `@src/components/sections/TerminalMockup.tsx`:
- Line 29: The TerminalMockup component contains a hardcoded line showing "✓
Detected Next.js 15" which is incorrect; update the static text in
TerminalMockup (the <p> element inside the TerminalMockup component) to "✓
Detected Next.js 16" to match package.json (next: "16.1.6"); alternatively
replace the hardcoded string with a dynamic value imported from package.json if
you prefer it to stay in sync automatically.
🧹 Nitpick comments (4)
src/components/layout/Footer.tsx (1)

6-11: Consider extracting the brand logo into a shared component.

The "R" badge + "ReadmeGenAI" text pattern is duplicated between Footer (lines 6–11) and Navbar (lines 23–28 of Navbar.tsx). A small <BrandLogo /> component would keep them in sync and reduce duplication.

src/components/ui/Button.tsx (1)

15-21: Consider defaulting type="button" to prevent accidental form submissions.

HTML <button> elements default to type="submit". If this component is ever used inside a <form>, it will trigger a form submission unless the caller explicitly passes type="button". Setting a safe default avoids this footgun.

Proposed fix
     <button
+      type="button"
       className={`px-6 py-2.5 rounded-full font-medium transition-all flex items-center justify-center gap-2 group ${variants[variant]} ${className}`}
       {...props}
     >

Since {...props} is spread after, callers can still override to type="submit" when needed.

src/components/layout/Navbar.tsx (1)

10-14: Add { passive: true } to the scroll listener for better scroll performance.

Since the handler never calls preventDefault(), marking it passive lets the browser optimize scroll handling.

Proposed fix
     window.addEventListener('scroll', handleScroll);
-    return () => window.removeEventListener('scroll', handleScroll);
+    window.addEventListener('scroll', handleScroll, { passive: true });
+    return () => window.removeEventListener('scroll', handleScroll);

Note: the original addEventListener on line 12 should also be updated:

-    window.addEventListener('scroll', handleScroll);
+    window.addEventListener('scroll', handleScroll, { passive: true });
src/components/sections/Hero.tsx (1)

1-1: Unnecessary React import with the new JSX transform.

If the project uses React 17+ with the automatic JSX runtime (which Next.js enables by default), the React import is not needed since JSX is transformed without it.

♻️ Proposed fix
-import React from 'react';

Comment on lines +8 to +13
const navLinks = [
{ name: 'Home', href: '#' },
{ name: 'Features', href: '#features' },
{ name: 'Examples', href: '#examples' },
{ name: 'Docs', href: '#docs' },
];
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

Nav links #examples and #docs point to non-existent sections.

The rendered page only has sections with id="features" (from Features.tsx). There are no elements with id="examples" or id="docs", so clicking those nav links will do nothing. Either add the corresponding sections or remove/disable these links until the pages exist.

Proposed fix — remove links for sections that don't exist yet
   const navLinks = [
     { name: 'Home', href: '#' },
     { name: 'Features', href: '#features' },
-    { name: 'Examples', href: '#examples' },
-    { name: 'Docs', href: '#docs' },
   ];
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const navLinks = [
{ name: 'Home', href: '#' },
{ name: 'Features', href: '#features' },
{ name: 'Examples', href: '#examples' },
{ name: 'Docs', href: '#docs' },
];
const navLinks = [
{ name: 'Home', href: '#' },
{ name: 'Features', href: '#features' },
];
🤖 Prompt for AI Agents
In `@src/app/page.tsx` around lines 8 - 13, navLinks contains entries for
'Examples' and 'Docs' that point to non-existent section IDs; either remove
those objects from the navLinks array or add corresponding sections with
id="examples" and id="docs" to the page (e.g., create Examples and Docs
components and render them alongside Features which uses id="features"). Update
the navLinks constant (remove or comment out the { name: 'Examples', href:
'#examples' } and { name: 'Docs', href: '#docs' } entries) or add matching
section elements/components that export/render elements with id="examples" and
id="docs" so the links work.

Comment on lines +18 to +24
<a
href="#"
aria-label="GitHub"
className="text-zinc-500 hover:text-white transition-colors"
>
<Github size={22} />
</a>
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

GitHub link is a non-functional placeholder (href="#").

This anchor will scroll to the top of the page instead of navigating to the actual GitHub repository. Update it to point to the real repository URL (e.g., https://github.com/BeyteFlow/ReadmeGenAI).

Proposed fix
         <a
-          href="#"
+          href="https://github.com/BeyteFlow/ReadmeGenAI"
+          target="_blank"
+          rel="noopener noreferrer"
           aria-label="GitHub"
           className="text-zinc-500 hover:text-white transition-colors"
         >
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<a
href="#"
aria-label="GitHub"
className="text-zinc-500 hover:text-white transition-colors"
>
<Github size={22} />
</a>
<a
href="https://github.com/BeyteFlow/ReadmeGenAI"
target="_blank"
rel="noopener noreferrer"
aria-label="GitHub"
className="text-zinc-500 hover:text-white transition-colors"
>
<Github size={22} />
</a>
🤖 Prompt for AI Agents
In `@src/components/layout/Footer.tsx` around lines 18 - 24, Footer.tsx contains a
non-functional anchor (the <a> wrapping <Github />) whose href is "#" — replace
that href with the real repository URL (e.g.,
https://github.com/BeyteFlow/ReadmeGenAI) in the Footer component, and set
appropriate external link attributes (target="_blank" and rel="noopener
noreferrer") and keep the aria-label "GitHub" so the GitHub icon link is
functional and accessible.

Comment on lines +46 to +54
<a
href="https://github.com/your-username/ReadmeGenAI"
target="_blank"
rel="noopener noreferrer"
className="hidden sm:flex items-center gap-2 px-4 py-1.5 rounded-full bg-white/5 border border-white/10 hover:border-white/30 hover:bg-white/10 transition-all text-xs font-medium"
>
<Github size={14} />
<span>Star on GitHub</span>
</a>
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

Placeholder GitHub URL — will be visible to users.

https://github.com/your-username/ReadmeGenAI is clearly a template placeholder. This will render a broken link for users who click "Star on GitHub."

Proposed fix
             <a
-              href="https://github.com/your-username/ReadmeGenAI"
+              href="https://github.com/BeyteFlow/ReadmeGenAI"
               target="_blank"
               rel="noopener noreferrer"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<a
href="https://github.com/your-username/ReadmeGenAI"
target="_blank"
rel="noopener noreferrer"
className="hidden sm:flex items-center gap-2 px-4 py-1.5 rounded-full bg-white/5 border border-white/10 hover:border-white/30 hover:bg-white/10 transition-all text-xs font-medium"
>
<Github size={14} />
<span>Star on GitHub</span>
</a>
<a
href="https://github.com/BeyteFlow/ReadmeGenAI"
target="_blank"
rel="noopener noreferrer"
className="hidden sm:flex items-center gap-2 px-4 py-1.5 rounded-full bg-white/5 border border-white/10 hover:border-white/30 hover:bg-white/10 transition-all text-xs font-medium"
>
<Github size={14} />
<span>Star on GitHub</span>
</a>
🤖 Prompt for AI Agents
In `@src/components/layout/Navbar.tsx` around lines 46 - 54, The "Star on GitHub"
anchor in the Navbar component currently points to a placeholder URL and will
render a broken link; update the anchor in Navbar (the <a> element rendering the
GitHub button) to use the real repository URL (from a config, env var, or a
constant like REPO_URL) instead of
"https://github.com/your-username/ReadmeGenAI", ensure target and rel attributes
remain, and fall back to hiding or disabling the button if no valid URL is
provided.

Comment on lines +82 to +84
<Button variant="primary" className="w-full justify-center mt-4">
<Github size={18} /> Star our Repo
</Button>
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

Mobile "Star our Repo" is a <button>, not a link — clicking it does nothing.

This renders a <Button> component (which produces a <button> element) but has no onClick handler or navigation logic. It should be an anchor (<a>) pointing to the GitHub repo, or wrap the Button in a link.

Proposed fix — use an anchor styled like the button
-          <Button variant="primary" className="w-full justify-center mt-4">
-            <Github size={18} /> Star our Repo
-          </Button>
+          <a
+            href="https://github.com/BeyteFlow/ReadmeGenAI"
+            target="_blank"
+            rel="noopener noreferrer"
+            className="w-full flex items-center justify-center gap-2 px-6 py-2.5 rounded-full font-medium bg-white text-black hover:bg-gray-200 transition-all mt-4"
+          >
+            <Github size={18} /> Star our Repo
+          </a>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<Button variant="primary" className="w-full justify-center mt-4">
<Github size={18} /> Star our Repo
</Button>
<a
href="https://github.com/BeyteFlow/ReadmeGenAI"
target="_blank"
rel="noopener noreferrer"
className="w-full flex items-center justify-center gap-2 px-6 py-2.5 rounded-full font-medium bg-white text-black hover:bg-gray-200 transition-all mt-4"
>
<Github size={18} /> Star our Repo
</a>
🤖 Prompt for AI Agents
In `@src/components/layout/Navbar.tsx` around lines 82 - 84, The "Star our Repo"
control renders a <Button> (producing a <button>) with no navigation handler;
replace it with an anchor styled like the button or wrap the Button in an <a>
that points to the GitHub repo (e.g.,
href="https://github.com/your-org/your-repo") and include target="_blank"
rel="noopener noreferrer" for safe external navigation; update the JSX where the
<Button variant="primary" className="w-full justify-center mt-4"> with <Github
size={18} /> Star our Repo is rendered (in Navbar component) so it becomes an
accessible link while preserving the existing classes and icon.


export const Hero = () => (
<section className="relative pt-40 pb-20 overflow-hidden">
<div className="absolute top-0 left-1/2 -translate-x-1/2 w-250 h-150 bg-blue-500/10 blur-[120px] rounded-full pointer-events-none" />
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

cat package.json | jq '.dependencies, .devDependencies' 2>/dev/null

Repository: BeyteFlow/ReadmeGenAI

Length of output: 465


🏁 Script executed:

fd "tailwind\.config\." --max-depth=3 -x cat {}

Repository: BeyteFlow/ReadmeGenAI

Length of output: 47


🏁 Script executed:

fd "package\.json" --max-depth=2 -x cat {}

Repository: BeyteFlow/ReadmeGenAI

Length of output: 727


🏁 Script executed:

find . -name "tailwind.config.*" -o -name "postcss.config.*" 2>/dev/null

Repository: BeyteFlow/ReadmeGenAI

Length of output: 85


🏁 Script executed:

find . -type f -name "*.ts" -o -name "*.js" -o -name "*.json" | grep -E "(tailwind|postcss)" | head -20

Repository: BeyteFlow/ReadmeGenAI

Length of output: 47


🏁 Script executed:

cat src/components/sections/Hero.tsx

Repository: BeyteFlow/ReadmeGenAI

Length of output: 1673


🏁 Script executed:

cat postcss.config.mjs

Repository: BeyteFlow/ReadmeGenAI

Length of output: 158


🏁 Script executed:

find . -type f \( -name "*.ts" -o -name "*.tsx" -o -name "*.js" \) -exec grep -l "theme.*extend\|spacing.*250\|spacing.*150" {} \;

Repository: BeyteFlow/ReadmeGenAI

Length of output: 47


Change w-250 and h-150 to arbitrary values; these are not valid Tailwind utility classes.

Tailwind v4 is configured without custom spacing extensions, so w-250 and h-150 will not generate valid CSS. Use arbitrary values instead: w-[62.5rem] h-[37.5rem].

🤖 Prompt for AI Agents
In `@src/components/sections/Hero.tsx` at line 8, The Tailwind classes w-250 and
h-150 in the absolute background div inside the Hero component are invalid;
replace them with arbitrary-value utilities w-[62.5rem] and h-[37.5rem] in the
same className string (the div with className starting "absolute top-0 left-1/2
...") so Tailwind generates the correct width and height.

Comment on lines +21 to +28
<div className="flex flex-col sm:flex-row justify-center items-center gap-4">
<Button className="w-full sm:w-auto px-10 py-4 text-base">
Get Started <ArrowRight size={18} />
</Button>
<Button variant="outline" className="w-full sm:w-auto px-10 py-4 text-base">
View Examples
</Button>
</div>
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

CTA buttons are not wired to any action or navigation.

Both "Get Started" and "View Examples" render as <button> elements with no onClick handler or wrapping <a>/<Link>. They are non-functional for the user. If these are intended as navigation links, consider wrapping them with Next.js <Link> or using <a> tags. If this is intentional placeholder work, a // TODO comment would help track it.

🤖 Prompt for AI Agents
In `@src/components/sections/Hero.tsx` around lines 21 - 28, The CTA buttons in
Hero.tsx (the Button components rendering "Get Started" and "View Examples" with
ArrowRight) have no navigation or click handlers; either wrap them with Next.js
Link (or an <a>) to route to the intended pages (e.g., <Link
href="/get-started"> and <Link href="/examples">) or add onClick handlers that
call the appropriate router.push paths, and if they are intentionally
placeholders add a clear TODO comment above the Button elements documenting the
intended destinations; update the Button props accordingly (remove conflicting
href if Button expects it) and ensure accessibility attributes (aria-label) are
present.

<p className="text-blue-400 flex items-center gap-2">
<span className="animate-pulse">●</span> Analyzing codebase...
</p>
<p className="text-zinc-500">✓ Detected Next.js 15 & TailwindCSS</p>
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Terminal demo text says "Next.js 15" but the project runs Next.js 16.

The package.json specifies next: "16.1.6". This static demo text should match to avoid confusing users inspecting the landing page.

Proposed fix
-          <p className="text-zinc-500">✓ Detected Next.js 15 & TailwindCSS</p>
+          <p className="text-zinc-500">✓ Detected Next.js 16 & TailwindCSS</p>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<p className="text-zinc-500">✓ Detected Next.js 15 & TailwindCSS</p>
<p className="text-zinc-500">✓ Detected Next.js 16 & TailwindCSS</p>
🤖 Prompt for AI Agents
In `@src/components/sections/TerminalMockup.tsx` at line 29, The TerminalMockup
component contains a hardcoded line showing "✓ Detected Next.js 15" which is
incorrect; update the static text in TerminalMockup (the <p> element inside the
TerminalMockup component) to "✓ Detected Next.js 16" to match package.json
(next: "16.1.6"); alternatively replace the hardcoded string with a dynamic
value imported from package.json if you prefer it to stay in sync automatically.

@naheel0 naheel0 merged commit 9f0515b into main Feb 9, 2026
4 checks passed
@naheel0 naheel0 deleted the frontend branch February 9, 2026 14:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area: frontend Changes specifically for the UI/Tailwind components.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant