Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-05-11 15:40:48 +00:00

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -177,35 +177,31 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "rotated-rays-static"}}
<ContactCTA
tag="Get in touch"
title="Ready to discuss new opportunities?"
description="I am open to discuss internships, technical roles, or software engineering positions."
buttons={[
{text: "Contact Me", href: "mailto:example@email.com"}
]}
background={{ variant: "sparkles-gradient" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/person-utilizes-digital-ai-tool-web-interface-green-screen_482257-123088.jpg"
<FooterLogoEmphasis
logoText="Kajana Pakirathan"
columns={[
{
title: "Navigation", items: [
{
label: "About", href: "#about"},
{
label: "Experience", href: "#experience"},
{
label: "Contact", href: "#contact"},
items: [
{ label: "About", href: "#about" },
{ label: "Experience", href: "#experience" },
{ label: "Contact", href: "#contact" },
],
},
{
title: "Social", items: [
{
label: "LinkedIn", href: "https://linkedin.com/in/kajana-pakirathan"},
items: [
{ label: "LinkedIn", href: "https://linkedin.com/in/kajana-pakirathan" },
],
},
]}
@@ -214,4 +210,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}