Merge version_4_1783293128343 into main #3

Merged
bender merged 2 commits from version_4_1783293128343 into main 2026-07-05 23:14:16 +00:00
2 changed files with 2 additions and 10 deletions

View File

@@ -23,14 +23,6 @@ export default function Layout() {
"name": "Book Now",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"

View File

@@ -20,8 +20,8 @@ const NavbarInline = ({ logo, logoImageSrc, navItems, ctaButton }: NavbarInlineP
return (
<nav data-section="navbar" className="fixed z-1000 top-5 left-1/2 -translate-x-1/2 w-content-width">
<div className="flex items-center justify-between p-2 xl:p-3 2xl:p-4 rounded backdrop-blur-sm card">
<a href="/" className="pl-2 text-xl font-medium text-foreground flex items-center gap-2">
{logoImageSrc && <img src={logoImageSrc} alt={logo} className="h-8 w-auto object-contain" />}
<a href="/" className="pl-2 text-2xl md:text-3xl font-bold text-foreground flex items-center gap-3">
{logoImageSrc && <img src={logoImageSrc} alt={logo} className="h-16 md:h-20 w-auto object-contain drop-shadow-lg" />}
<span className={logoImageSrc ? "sr-only md:not-sr-only" : ""}>{logo}</span>
</a>