From 43b92408cb8f2fe8efe9d6490de7776daa5c882e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Ckirukib=E2=80=9D?= <“kirubeljkl679@gmail.com”> Date: Tue, 17 Mar 2026 19:27:24 +0300 Subject: [PATCH] style: floating navbar and call icon Made-with: Cursor --- src/components/floating-call-button.tsx | 5 +++-- src/components/hero.tsx | 2 +- src/components/site-header.tsx | 18 +++++------------- 3 files changed, 9 insertions(+), 16 deletions(-) diff --git a/src/components/floating-call-button.tsx b/src/components/floating-call-button.tsx index b1145f6..b99bc12 100644 --- a/src/components/floating-call-button.tsx +++ b/src/components/floating-call-button.tsx @@ -1,5 +1,6 @@ "use client"; +import { PhoneCall } from "lucide-react"; import { offices } from "@/lib/site-config"; export function FloatingCallButton() { @@ -12,8 +13,8 @@ export function FloatingCallButton() { href={vaOffice.phoneHref} className="fixed bottom-4 right-4 z-40 inline-flex h-12 items-center justify-center rounded-full bg-sky-500 px-4 text-sm font-semibold text-white shadow-lg shadow-sky-500/40 hover:bg-sky-400 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-sky-300" > - - + + Call Ghion Financial diff --git a/src/components/hero.tsx b/src/components/hero.tsx index d4ce4c2..01e1184 100644 --- a/src/components/hero.tsx +++ b/src/components/hero.tsx @@ -3,7 +3,7 @@ import { Button } from "@/components/ui/button"; export function Hero() { return ( -
+

diff --git a/src/components/site-header.tsx b/src/components/site-header.tsx index 4d3cab6..89fd27a 100644 --- a/src/components/site-header.tsx +++ b/src/components/site-header.tsx @@ -2,6 +2,7 @@ import Link from "next/link"; import { useState } from "react"; +import { PhoneCall, Menu } from "lucide-react"; import { offices } from "@/lib/site-config"; import { Button } from "@/components/ui/button"; @@ -10,8 +11,8 @@ export function SiteHeader() { const [open, setOpen] = useState(false); return ( -

-
+
+
GF @@ -47,14 +48,6 @@ export function SiteHeader() {
- {vaOffice ? ( - - Call {vaOffice.phone} - - ) : null}
{open && ( -
+