Update src/app/search/page.tsx

This commit is contained in:
2026-03-29 18:42:30 +00:00
parent 15f7a541df
commit 526b88a062

View File

@@ -2,12 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function SearchPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,103 +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="search-features" data-section="search-features">
<FeatureCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
features={[
{
title: "Smart Match AI",
description: "Our algorithms analyze thousands of openings to surface positions that align with your career goals and technical profile.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdCHXyKlKzInhFMFJAXkji1y53/a-minimalist-user-interface-screen-showi-1774809700757-1550bd4d.png?_wi=2",
},
{
title: "Verified Listings",
description: "Apply with confidence knowing every job post on our platform is thoroughly vetted for legitimacy and company culture quality.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdCHXyKlKzInhFMFJAXkji1y53/a-visual-representation-of-data-quality--1774809699659-f88b9729.png?_wi=2",
},
]}
title="Find Your Perfect Role"
description="Utilize our advanced AI-powered search filters to match your unique skills with top-tier job opportunities globally."
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "How do I filter jobs by location?",
content: "Use the sidebar filter during your search to select specific cities, regions, or remote-only options.",
},
{
id: "2",
title: "Can I set up job alerts?",
content: "Yes, simply click the 'Save Search' button on your results page to receive notifications for new matches.",
},
]}
title="Search FAQs"
description="Common questions regarding job discovery and application processes."
faqsAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Platform",
items: [
{
label: "Search Jobs",
href: "/search",
},
{
label: "Saved Jobs",
href: "/saved",
},
],
},
{
title: "Support",
items: [
{
label: "Help Center",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyrightText="© 2025 | Business"
button={{ text: "Search", href: "/search" }}
/>
</div>
</ReactLenis>