import { getJobylonFeed } from "@/lib/trpc/memoizedRequests" import { Section } from "@/components/Section" import { SectionHeader } from "@/components/Section/Header" import SectionLink from "@/components/Section/Link" import JobList from "./JobList" interface JobylonFeedProps { title?: string subtitle?: string link?: { href: string; text: string } } export default async function JobylonFeed({ title, subtitle, link, }: JobylonFeedProps) { const allJobs = await getJobylonFeed() if (!allJobs) { return null } return (
) }