Update src/app/contact/page.tsx

This commit is contained in:
2026-05-14 10:51:09 +00:00
parent 969b1755df
commit b057537c28

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>
);
}
}