Update src/app/profile/page.tsx

This commit is contained in:
2026-03-29 18:42:29 +00:00
parent 91c7e27af5
commit 10db089016

View File

@@ -2,12 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
export default function LandingPage() {
export default function ProfilePage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,94 +22,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Search",
id: "/search",
},
{
name: "Saved",
id: "/saved",
},
{
name: "Profile",
id: "/profile",
},
{ name: "Home", id: "/" },
{ name: "Search", id: "/search" },
{ name: "Saved", id: "/saved" },
{ name: "Profile", id: "/profile" },
]}
brandName="JMA"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Your Professional Journey"
description="Manage your profile information and track your professional development milestones here."
bulletPoints={[
{
title: "Experience",
description: "Update your work history and project portfolio.",
},
{
title: "Preferences",
description: "Set your role and industry preferences to improve matching.",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdCHXyKlKzInhFMFJAXkji1y53/portrait-of-a-confident-young-bangladesh-1774809699550-a3f1be5c.png?_wi=2"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "John Doe",
role: "Frontend Dev",
company: "Tech Corp",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdCHXyKlKzInhFMFJAXkji1y53/portrait-of-a-friendly-tech-savvy-gradua-1774809700395-820b1a2f.png?_wi=2",
},
{
id: "2",
name: "Jane Smith",
role: "Product Designer",
company: "Design Studio",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdCHXyKlKzInhFMFJAXkji1y53/confident-portrait-of-a-female-professio-1774809701040-52bb697c.png?_wi=2",
},
]}
title="Success Stories"
description="Hear from professionals who used our platform to land their dream roles."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Navigation",
items: [
{
label: "Job Search",
href: "/search",
},
{
label: "My Profile",
href: "/profile",
},
],
},
]}
copyrightText="© 2025 | Business"
button={{ text: "Profile", href: "/profile" }}
/>
</div>
</ReactLenis>