mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-10-03 16:46:18 +00:00
Rename Header.tsx to header.tsx
This commit is contained in:
27
web/app/components/header.tsx
Normal file
27
web/app/components/header.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
import Link from "next/link"
|
||||
import { Button } from "@/components/ui/button"
|
||||
|
||||
export default function Header() {
|
||||
return (
|
||||
<header className="py-4 px-6 bg-white shadow-sm">
|
||||
<div className="container mx-auto flex justify-between items-center">
|
||||
<Link href="/" className="text-2xl font-bold text-primary">
|
||||
StreamLine
|
||||
</Link>
|
||||
<nav className="hidden md:flex space-x-6">
|
||||
<Link href="#features" className="text-gray-600 hover:text-primary">
|
||||
Features
|
||||
</Link>
|
||||
<Link href="#testimonials" className="text-gray-600 hover:text-primary">
|
||||
Testimonials
|
||||
</Link>
|
||||
<Link href="#pricing" className="text-gray-600 hover:text-primary">
|
||||
Pricing
|
||||
</Link>
|
||||
</nav>
|
||||
<Button>Get Started</Button>
|
||||
</div>
|
||||
</header>
|
||||
)
|
||||
}
|
||||
|
Reference in New Issue
Block a user