feat: Introduce InstallSection component and refine existing UI for the marketing page, layout, and various components.

This commit is contained in:
2026-02-08 16:50:30 +00:00
parent 80aaf16bba
commit 4ec9355510
10 changed files with 231 additions and 56 deletions

View File

@@ -38,12 +38,6 @@ const Navbar: React.FC = () => {
<Link href="/#features" className="text-gray-300 hover:text-primary transition-colors text-sm font-medium">Features</Link>
<Link href="/#how-it-works" className="text-gray-300 hover:text-primary transition-colors text-sm font-medium">How it Works</Link>
<Link href="/#pricing" className="text-gray-300 hover:text-primary transition-colors text-sm font-medium">Pricing</Link>
<Link
href="/login"
className="bg-primary text-gray-900 px-5 py-2 rounded-full font-semibold text-sm hover:brightness-110 transition-all shadow-glow"
>
Log In
</Link>
</div>
{/* Mobile Menu Button */}
@@ -65,12 +59,6 @@ const Navbar: React.FC = () => {
<Link href="/#features" className="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800">Features</Link>
<Link href="/#how-it-works" className="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800">How it Works</Link>
<Link href="/#pricing" className="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800">Pricing</Link>
<Link
href="/login"
className="block w-full text-center mt-4 bg-primary text-gray-900 px-5 py-3 rounded-xl font-bold hover:brightness-110 transition-all"
>
Log In
</Link>
</div>
</div>
)}
@@ -84,4 +72,4 @@ const Navbar: React.FC = () => {
);
};
export default Navbar;
export default Navbar;