Compare commits
4 Commits
version_22
...
version_23
| Author | SHA1 | Date | |
|---|---|---|---|
| b5994e8235 | |||
| e3f129208b | |||
| b835383e2a | |||
| 64f3c3869b |
@@ -10,7 +10,7 @@ import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|||||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||||
import BlogCardThree from "@/components/sections/blog/BlogCardThree";
|
import BlogCardThree from "@/components/sections/blog/BlogCardThree";
|
||||||
import { Star, Heart, Users, Camera, Sparkles, Crown, Phone, MessageCircle, User, Play, ChevronRight, X, ArrowDown, ArrowUp } from "lucide-react";
|
import { Star, Heart, Users, Camera, Sparkles, Crown, Phone, MessageCircle, User, Play, ChevronRight, X, ArrowDown, ArrowUp, Instagram, MapPin } from "lucide-react";
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -230,15 +230,47 @@ export default function LandingPage() {
|
|||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div id="nav" data-section="nav" className="relative z-20">
|
{/* Fixed Top Social & Contact Bar */}
|
||||||
|
<div className="fixed top-0 left-0 right-0 z-50 bg-gradient-to-r from-[var(--primary-cta)] to-[var(--primary-cta)] text-[var(--primary-cta-text)] py-3 px-4 flex items-center justify-center gap-6">
|
||||||
|
{/* Instagram */}
|
||||||
|
<a
|
||||||
|
href="https://instagram.com/irentall.usa"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="hover:scale-110 transition-transform duration-300 ease-out"
|
||||||
|
aria-label="Follow us on Instagram"
|
||||||
|
title="Follow us on Instagram @irentall.usa"
|
||||||
|
>
|
||||||
|
<Instagram className="w-6 h-6" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
{/* Phone */}
|
||||||
|
<a
|
||||||
|
href="tel:747-800-7770"
|
||||||
|
className="hover:scale-110 transition-transform duration-300 ease-out"
|
||||||
|
aria-label="Call us"
|
||||||
|
title="Call (747) 800-7770"
|
||||||
|
>
|
||||||
|
<Phone className="w-6 h-6" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
{/* Google Maps */}
|
||||||
|
<a
|
||||||
|
href="https://www.google.com/maps/search/3106+Los+Feliz+Blvd,+Los+Angeles,+CA+90039"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="hover:scale-110 transition-transform duration-300 ease-out"
|
||||||
|
aria-label="View our location"
|
||||||
|
title="3106 Los Feliz Blvd, Los Angeles, CA 90039"
|
||||||
|
>
|
||||||
|
<MapPin className="w-6 h-6" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav" data-section="nav" className="relative z-20 mt-16">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Irentall "
|
brandName=""
|
||||||
navItems={[
|
navItems={[]}
|
||||||
{ name: "Home", id: "home" },
|
|
||||||
{ name: "About", id: "about" },
|
|
||||||
{ name: "Gallery", id: "gallery" },
|
|
||||||
{ name: "Contact", id: "contact" }
|
|
||||||
]}
|
|
||||||
button={{
|
button={{
|
||||||
text: "Call Now", href: "tel:747-800-7770"
|
text: "Call Now", href: "tel:747-800-7770"
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user