feat: add favicon and logo icon, replace gradient square in navbar, fix company.repi.fun → vectry.tech
This commit is contained in:
@@ -2,7 +2,8 @@
|
||||
|
||||
import { useState } from "react";
|
||||
import Link from "next/link";
|
||||
import { Code2, Menu, X, Github } from "lucide-react";
|
||||
import Image from "next/image";
|
||||
import { Menu, X, Github } from "lucide-react";
|
||||
|
||||
export function Navbar() {
|
||||
const [isOpen, setIsOpen] = useState(false);
|
||||
@@ -18,9 +19,13 @@ export function Navbar() {
|
||||
<div className="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="flex items-center justify-between h-16">
|
||||
<Link href="/" className="flex items-center gap-2 group">
|
||||
<div className="w-8 h-8 rounded-lg bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center group-hover:shadow-lg group-hover:shadow-blue-500/25 transition-shadow">
|
||||
<Code2 className="w-5 h-5 text-white" />
|
||||
</div>
|
||||
<Image
|
||||
src="/logo-icon.png"
|
||||
alt="CodeBoard"
|
||||
width={32}
|
||||
height={32}
|
||||
className="rounded-lg group-hover:shadow-lg group-hover:shadow-blue-500/25 transition-shadow"
|
||||
/>
|
||||
<span className="text-lg font-semibold text-white">
|
||||
CodeBoard
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user