7 Commits

Author SHA1 Message Date
8e298226c1 Update src/app/page.tsx 2026-05-14 10:54:51 +00:00
9d23acc5a8 Update src/app/tours/page.tsx 2026-05-14 10:51:10 +00:00
f669e13cf5 Update src/app/reviews/page.tsx 2026-05-14 10:51:09 +00:00
ab1c17a302 Update src/app/page.tsx 2026-05-14 10:51:09 +00:00
b057537c28 Update src/app/contact/page.tsx 2026-05-14 10:51:09 +00:00
969b1755df Update src/app/about/page.tsx 2026-05-14 10:51:08 +00:00
4ce7e0a5f2 Merge version_3 into main
Merge version_3 into main
2026-05-14 10:49:21 +00:00
5 changed files with 61 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { MessageCircle } from "lucide-react";
export default function AboutPage() {
return (
@@ -78,7 +79,17 @@ export default function AboutPage() {
bottomRightText="Islamabad, Pakistan"
/>
</div>
<a
href="https://wa.me/923356442987"
target="_blank"
rel="noreferrer"
className="fixed bottom-8 right-8 z-50 p-4 rounded-full bg-green-500 text-white shadow-lg animate-pulse hover:scale-110 transition-transform"
aria-label="WhatsApp"
>
<MessageCircle size={24} />
</a>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,6 +6,7 @@ import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -83,7 +84,17 @@ export default function LandingPage() {
bottomRightText="Islamabad, Pakistan"
/>
</div>
<a
href="https://wa.me/923356442987"
target="_blank"
rel="noreferrer"
className="fixed bottom-8 right-8 z-50 p-4 rounded-full bg-green-500 text-white shadow-lg animate-pulse hover:scale-110 transition-transform"
aria-label="WhatsApp"
>
<MessageCircle size={24} />
</a>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -8,6 +8,7 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import { MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -45,7 +46,7 @@ export default function LandingPage() {
tag="Premium Travel"
buttons={[
{ text: "Discover Collections", href: "/tours" },
{ text: "Concierge Support", href: "https://wa.me/923356442987" },
{ text: "Whatsapp Support", href: "https://wa.me/923356442987" },
]}
carouselItems={[
{ id: "c1", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-vertical-shot-parco-naturale-di-fanes-sennes-braies-prags-italy_181624-21712.jpg?_wi=1", imageAlt: "Scenic view 1" },
@@ -124,7 +125,17 @@ export default function LandingPage() {
bottomRightText="Islamabad, Pakistan"
/>
</div>
<a
href="https://wa.me/923356442987"
target="_blank"
rel="noreferrer"
className="fixed bottom-8 right-8 z-50 p-4 rounded-full bg-green-500 text-white shadow-lg animate-pulse hover:scale-110 transition-transform"
aria-label="WhatsApp"
>
<MessageCircle size={24} />
</a>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,6 +6,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -93,7 +94,17 @@ export default function LandingPage() {
bottomRightText="Islamabad, Pakistan"
/>
</div>
<a
href="https://wa.me/923356442987"
target="_blank"
rel="noreferrer"
className="fixed bottom-8 right-8 z-50 p-4 rounded-full bg-green-500 text-white shadow-lg animate-pulse hover:scale-110 transition-transform"
aria-label="WhatsApp"
>
<MessageCircle size={24} />
</a>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,6 +6,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import { MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -90,7 +91,17 @@ export default function LandingPage() {
bottomRightText="Islamabad, Pakistan"
/>
</div>
<a
href="https://wa.me/923356442987"
target="_blank"
rel="noreferrer"
className="fixed bottom-8 right-8 z-50 p-4 rounded-full bg-green-500 text-white shadow-lg animate-pulse hover:scale-110 transition-transform"
aria-label="WhatsApp"
>
<MessageCircle size={24} />
</a>
</ReactLenis>
</ThemeProvider>
);
}
}