Update src/app/about/page.tsx

This commit is contained in:
2026-05-14 10:51:08 +00:00
parent 4ce7e0a5f2
commit 969b1755df

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