Compare commits
11 Commits
version_22
...
version_26
| Author | SHA1 | Date | |
|---|---|---|---|
| c74227ca00 | |||
| 34667b3e39 | |||
| 3f4359dd46 | |||
| 30c0b01057 | |||
| 0b84fe33a3 | |||
| 970fa3fbea | |||
| 9807ee790c | |||
| b5994e8235 | |||
| e3f129208b | |||
| b835383e2a | |||
| 64f3c3869b |
@@ -1,7 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
|
||||||
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
||||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||||
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
||||||
@@ -10,7 +9,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,22 +229,44 @@ export default function LandingPage() {
|
|||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div id="nav" data-section="nav" className="relative z-20">
|
{/* Fixed Top Social & Contact Bar */}
|
||||||
<NavbarStyleCentered
|
<div className="fixed top-0 left-0 right-0 z-50 bg-[#D4AF37] text-black py-3 px-4 flex items-center justify-center gap-6">
|
||||||
brandName="Irentall "
|
{/* Instagram */}
|
||||||
navItems={[
|
<a
|
||||||
{ name: "Home", id: "home" },
|
href="https://instagram.com/irentall.usa"
|
||||||
{ name: "About", id: "about" },
|
target="_blank"
|
||||||
{ name: "Gallery", id: "gallery" },
|
rel="noopener noreferrer"
|
||||||
{ name: "Contact", id: "contact" }
|
className="hover:scale-110 transition-transform duration-300 ease-out"
|
||||||
]}
|
aria-label="Follow us on Instagram"
|
||||||
button={{
|
title="Follow us on Instagram @irentall.usa"
|
||||||
text: "Call Now", href: "tel:747-800-7770"
|
>
|
||||||
}}
|
<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/Irentall"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="hover:scale-110 transition-transform duration-300 ease-out"
|
||||||
|
aria-label="Search Irentall on Google Maps"
|
||||||
|
title="Search Irentall on Google Maps"
|
||||||
|
>
|
||||||
|
<MapPin className="w-6 h-6" />
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero" className="relative z-10">
|
<div id="hero" data-section="hero" className="relative z-10 mt-16">
|
||||||
<HeroSplitDoubleCarousel
|
<HeroSplitDoubleCarousel
|
||||||
title="Find Your Perfect Wedding Dress in Los Angeles"
|
title="Find Your Perfect Wedding Dress in Los Angeles"
|
||||||
description="Personalized bridal styling with a curated collection of stunning gowns. Our expert team will guide you through every moment of your journey to find the dress of your dreams."
|
description="Personalized bridal styling with a curated collection of stunning gowns. Our expert team will guide you through every moment of your journey to find the dress of your dreams."
|
||||||
|
|||||||
Reference in New Issue
Block a user