text
stringlengths
3
8.33k
repo
stringclasses
52 values
path
stringlengths
6
141
language
stringclasses
35 values
sha
stringlengths
64
64
chunk_index
int32
0
273
n_tokens
int32
1
896
<"div"> & { hideLabel?: boolean hideIndicator?: boolean indicator?: "line" | "dot" | "dashed" nameKey?: string labelKey?: string }) { const { config } = useChart() const tooltipLabel = React.useMemo(() => { if (hideLabel || !payload?.length) { return null } const [item] = p...
catchi
components/ui/chart.tsx
TypeScript
875c6b5b942281b4737cc784fc96966b796e10606ebcc5e751b524c74dbd7263
1
896
)} </div> </> )} </div> ) })} </div> </div> ) } const ChartLegend = RechartsPrimitive.Legend function ChartLegendContent({ className, hideIcon = false, payload, verticalAlign = "bottom", nameKey, }: React.ComponentProp...
catchi
components/ui/chart.tsx
TypeScript
a730f607e8acd85eed12866b76c6d012697ba03db9e04ed1e25459dba04a7dbf
2
536
"use client" import * as React from "react" import * as CheckboxPrimitive from "@radix-ui/react-checkbox" import { CheckIcon } from "lucide-react" import { cn } from "@/lib/utils" function Checkbox({ className, ...props }: React.ComponentProps<typeof CheckboxPrimitive.Root>) { return ( <CheckboxPrimitive.R...
catchi
components/ui/checkbox.tsx
TypeScript
4c395ef15549e46068eb3b32a2a10fb5bfdb01f6834a3c0231a218a529015c83
0
309
"use client" import * as React from "react" import { Command as CommandPrimitive } from "cmdk" import { SearchIcon } from "lucide-react" import { cn } from "@/lib/utils" import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@/components/ui/dialog" function Command({ classN...
catchi
components/ui/command.tsx
TypeScript
bc65975bbb3b5adc4424d9233241a2e8acf307315dfdfc2b922fe17f5925a1ee
0
896
.Group data-slot="command-group" className={cn( "text-foreground [&_[cmdk-group-heading]]:text-muted-foreground overflow-hidden p-1 [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium", className )} {...
catchi
components/ui/command.tsx
TypeScript
7f09bb1f082c643f9a54f6ed57ff574f129f89eb412915f77604080374d41a1b
1
488
"use client" import * as React from "react" import * as DialogPrimitive from "@radix-ui/react-dialog" import { XIcon } from "lucide-react" import { cn } from "@/lib/utils" function Dialog({ ...props }: React.ComponentProps<typeof DialogPrimitive.Root>) { return <DialogPrimitive.Root data-slot="dialog" {...props}...
catchi
components/ui/dialog.tsx
TypeScript
c4301969fb15591a0f57826025b26c38536b35d5e79f88b9224469d323226644
0
896
} function DialogFooter({ className, ...props }: React.ComponentProps<"div">) { return ( <div data-slot="dialog-footer" className={cn( "flex flex-col-reverse gap-2 sm:flex-row sm:justify-end", className )} {...props} /> ) } function DialogTitle({ className, ...p...
catchi
components/ui/dialog.tsx
TypeScript
26b7598bca091fe7e7db889407efd282d09b27c2f8a093f3ea79c4c7ed2ed961
1
234
"use client" import * as React from "react" import { CheckIcon, ChevronRightIcon, CircleIcon } from "lucide-react" import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui" import { cn } from "@/lib/utils" type PointerDownEvent = Parameters< NonNullable<DropdownMenuPrimitive.DropdownMenuContentProps["onPoin...
catchi
components/ui/dropdown-menu.tsx
TypeScript
22510d1c727aa2893daf3c3a0b393f460d0b04bf4ea1cf244ee7116f7277bcad
0
896
-destructive-foreground data-[variant=destructive]:*:[svg]:!text-destructive-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0"...
catchi
components/ui/dropdown-menu.tsx
TypeScript
69bb26520a8f27f7f8b3d9a759b9cc2ebe6d457f58d03a444073b388a11fa198
1
896
h-full items-center rounded border px-1 font-[inherit] text-[0.625rem] font-medium", className )} {...props} /> ) } function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>) { return <DropdownMenuPrimitive.Sub data-slot="dropdown-menu-sub" {...props} /...
catchi
components/ui/dropdown-menu.tsx
TypeScript
52ca88d8d10c025c8b918f8aba5f7a7c6a0bbee7c6f5b0e74345ef9f72165552
2
535
import * as React from "react" import { cn } from "@/lib/utils" function Input({ className, type, ...props }: React.ComponentProps<"input">) { return ( <input type={type} data-slot="input" className={cn( "file:text-foreground placeholder:text-muted-foreground selection:bg-primary selec...
catchi
components/ui/input.tsx
TypeScript
14819d2a1262cb3be213b1819a1bc2839877f0acbbc0894a1eb07ec49999375b
0
610
"use client" import * as React from "react" import * as LabelPrimitive from "@radix-ui/react-label" import { cn } from "@/lib/utils" function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>) { return ( <LabelPrimitive.Root data-slot="label" className={cn( ...
catchi
components/ui/label.tsx
TypeScript
9ec42c8a57e82311118b794318409ee02b2cebfa49ba6cce8457cff6448cd471
0
163
import * as React from "react" import { ChevronLeftIcon, ChevronRightIcon, MoreHorizontalIcon, } from "lucide-react" import { cn } from "@/lib/utils" import { Button, buttonVariants } from "@/components/ui/button" function Pagination({ className, ...props }: React.ComponentProps<"nav">) { return ( <nav ...
catchi
components/ui/pagination.tsx
TypeScript
53ffa0474d07dbfe1fb67f043a0ad7e7d24feecf950e65da8b929a90179c6ad4
0
667
"use client" import * as React from "react" import * as PopoverPrimitive from "@radix-ui/react-popover" import { cn } from "@/lib/utils" function Popover({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>) { return <PopoverPrimitive.Root data-slot="popover" {...props} /> } function PopoverTrigger(...
catchi
components/ui/popover.tsx
TypeScript
29a217781737bbf5c430859b3de46097a44ada81c4143c2d05543d2167de0ee1
0
453
"use client" import * as React from "react" import * as ProgressPrimitive from "@radix-ui/react-progress" import { cn } from "@/lib/utils" function Progress({ className, value, ...props }: React.ComponentProps<typeof ProgressPrimitive.Root>) { return ( <ProgressPrimitive.Root data-slot="progress" ...
catchi
components/ui/progress.tsx
TypeScript
e7a89220fb49e18d6613956781cfd5eb38d5da36379e93f5fc90ccec127dc871
0
185
"use client" import * as React from "react" import * as SelectPrimitive from "@radix-ui/react-select" import { CheckIcon, ChevronDownIcon, ChevronUpIcon } from "lucide-react" import { cn } from "@/lib/utils" function Select({ ...props }: React.ComponentProps<typeof SelectPrimitive.Root>) { return <SelectPrimitiv...
catchi
components/ui/select.tsx
TypeScript
5087edda388511c0285e9ce53a50f91e92cbd7b21b1a1a33ca633ad567e82992
0
896
-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border shadow-md", position === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1", className )} posit...
catchi
components/ui/select.tsx
TypeScript
79037e1bdd9a20d078e6f2e2a8a67c84c5f0d9519a59a5f04a77d11e736e95fa
1
855
"use client" import * as React from "react" import * as SeparatorPrimitive from "@radix-ui/react-separator" import { cn } from "@/lib/utils" function Separator({ className, orientation = "horizontal", decorative = true, ...props }: React.ComponentProps<typeof SeparatorPrimitive.Root>) { return ( <Separ...
catchi
components/ui/separator.tsx
TypeScript
e9dddbd8dbbc0eccd683306481b0f0bbc8e2b60ea97817416ebb9fe7fbbbdca8
0
170
"use client" import * as React from "react" import * as SheetPrimitive from "@radix-ui/react-dialog" import { XIcon } from "lucide-react" import { cn } from "@/lib/utils" function Sheet({ ...props }: React.ComponentProps<typeof SheetPrimitive.Root>) { return <SheetPrimitive.Root data-slot="sheet" {...props} /> } ...
catchi
components/ui/sheet.tsx
TypeScript
3e7dba0c3f207e89318bdc034ec08552454f1ebb5b737f8fd8e5ef6db7e0f6dd
0
896
size-4" /> <span className="sr-only">Close</span> </SheetPrimitive.Close> </SheetPrimitive.Content> </SheetPortal> ) } function SheetHeader({ className, ...props }: React.ComponentProps<"div">) { return ( <div data-slot="sheet-header" className={cn("flex flex-col gap-1.5...
catchi
components/ui/sheet.tsx
TypeScript
73c36bfe6302f3e7f121343e71c5829154bf0bf71dcd75be87f4ea22c82f744d
1
325
"use client"; import * as React from "react"; import { Slot } from "@radix-ui/react-slot"; import { cva, VariantProps } from "class-variance-authority"; import { PanelLeftIcon } from "lucide-react"; import { useIsMobile } from "@/hooks/use-mobile"; import { cn } from "@/lib/utils"; import { Button } from "@/component...
catchi
components/ui/sidebar.tsx
TypeScript
7e8ffaf830f0c116bbb3c4f1b87084b3dcc6caf0724691001a4a3dad226d7814
0
896
setOpenMobile, toggleSidebar, }), [state, open, setOpen, isMobile, openMobile, setOpenMobile, toggleSidebar] ); return ( <SidebarContext.Provider value={contextValue}> <TooltipProvider delayDuration={0}> <div data-slot="sidebar-wrapper" style={ { ...
catchi
components/ui/sidebar.tsx
TypeScript
a451587db546ac1cd527e29162b2e37cfd4274a4683da19c26fb23adef5e2851
1
896
var(--sidebar-width)*-1)]" : "right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]", // Adjust the padding for floating and inset variants. variant === "floating" || variant === "inset" ? "p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-wid...
catchi
components/ui/sidebar.tsx
TypeScript
e6cad65d97f60bcddb30980804a87acd4387001033c9d7fad4d6930040965718
2
896
( "bg-background relative flex w-full flex-1 flex-col", "md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow-sm md:peer-data-[variant=inset]:peer-data-[state=collapsed]:ml-2", className )} {......
catchi
components/ui/sidebar.tsx
TypeScript
ba6a84d0ef5b3bf25c57a5df5571ca75c8493e70e33b75dd58949ba22cf04f3d
3
896
( <Comp data-slot="sidebar-group-action" data-sidebar="group-action" className={cn( "text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground absolute top-3.5 right-3 flex aspect-square w-5 items-center justify-center rounded-md p-0 outline-hid...
catchi
components/ui/sidebar.tsx
TypeScript
60318abf4525ccfd849d171f084cb01fbf73347389c769b72fa6d404e4342d0d
4
896
SidebarMenuButton({ asChild = false, isActive = false, variant = "default", size = "default", tooltip, className, ...props }: React.ComponentProps<"button"> & { asChild?: boolean; isActive?: boolean; tooltip?: string | React.ComponentProps<typeof TooltipContent>; } & VariantProps<typeof sidebarMenuB...
catchi
components/ui/sidebar.tsx
TypeScript
bc497c277544973235599e42a37fe53f98572b7deda3f43941414e96d549ad95
5
896
hidden", className )} {...props} /> ); } function SidebarMenuSkeleton({ className, showIcon = false, ...props }: React.ComponentProps<"div"> & { showIcon?: boolean; }) { // Random width between 50 to 90%. const width = React.useMemo(() => { return `${Math.floor(Math.random() *...
catchi
components/ui/sidebar.tsx
TypeScript
61bb34c550c8b76fac2e1df3960f7619bd8d4b9c4a0b6a973dfeb393b7d641e9
6
864
import { cn } from "@/lib/utils" function Skeleton({ className, ...props }: React.ComponentProps<"div">) { return ( <div data-slot="skeleton" className={cn("bg-accent animate-pulse rounded-md", className)} {...props} /> ) } export { Skeleton }
catchi
components/ui/skeleton.tsx
TypeScript
f2aea81d8baf2b621945382aabac150e3db40f20d19ac1abea7aff805f1dc33c
0
79
"use client" import * as React from "react" import { cn } from "@/lib/utils" function Table({ className, ...props }: React.ComponentProps<"table">) { return ( <div data-slot="table-container" className="relative w-full overflow-x-auto" > <table data-slot="table" className=...
catchi
components/ui/table.tsx
TypeScript
7b8c7a952cf49e78aafe5f628c3bd90f7e01bd5602eb5d3650bef5727a8186d7
0
704
"use client" import * as React from "react" import * as TogglePrimitive from "@radix-ui/react-toggle" import { cva, type VariantProps } from "class-variance-authority" import { cn } from "@/lib/utils" const toggleVariants = cva( "inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium hover:bg...
catchi
components/ui/toggle.tsx
TypeScript
b201563ea8cdef3680a3d9bf272cfc5918a5ab6e1079d7ff8d6273df7fce2849
0
435
"use client" import * as React from "react" import * as TooltipPrimitive from "@radix-ui/react-tooltip" import { cn } from "@/lib/utils" function TooltipProvider({ delayDuration = 0, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>) { return ( <TooltipPrimitive.Provider data-slot="t...
catchi
components/ui/tooltip.tsx
TypeScript
8d8a3645f547334b759341daf94a20b12a8ba17e8de4ad6e4e1c64b38842c1e3
0
496
import * as React from "react" const MOBILE_BREAKPOINT = 768 export function useIsMobile() { const [isMobile, setIsMobile] = React.useState<boolean | undefined>(undefined) React.useEffect(() => { const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`) const onChange = () => { setIs...
catchi
hooks/use-mobile.ts
TypeScript
ad0936f84f1df79d3697bfbff9c18f8ad58431c1cbaf2359c6a853b0fcc9f28b
0
128
import { type ClassValue, clsx } from "clsx" import { twMerge } from "tailwind-merge" export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)) }
catchi
lib/utils.ts
TypeScript
51bbf14cd1f84f49aab2e0dbee420137015d56b6677bb439e83a908cd292cce1
0
44
'use server' import { demoJobs } from '@/lib/data/job-demo' import { JobFilters, PaginatedJobsResponse, UniqueFiltersResponse, validateJobFilters, validatePaginatedJobsResponse, Job } from '@/lib/types/job' export async function getJobs( page: number = 1, pageSize: number = 10, filters: JobFilte...
catchi
lib/actions/jobs.ts
TypeScript
8fc25da2c818dcd6a80eed14a18de31aaf48deb66bd848dd4cced7c226fe1d7d
0
896
.filter(job => new Date(job.created) >= filterDate ) } const total = filteredJobs.length const startIndex = (page - 1) * pageSize const endIndex = startIndex + pageSize const paginatedJobs = filteredJobs.slice(startIndex, endIndex) const hasMore = endIndex < total const response: Paginate...
catchi
lib/actions/jobs.ts
TypeScript
911a799e6528d4a867b5436ce2360992d2d37e750ceb70dfc968bdcde3de3c43
1
463
// Auto-generated demo job data // Generated on: 2025-07-02T23:11:09.645Z // Count: 100 jobs export const demoJobs = [ { "id": 18, "city": { "id": 2, "state": { "id": 1, "country": { "name": "France", "code": "FR", "id": 0 }, "name": "...
catchi
lib/data/job-demo.ts
TypeScript
88fdbb05c029d25d5468d024a5b293d895518862a0dec8bf18cb4804e0211c91
0
896
n• Strong problem-solving skills and attention to detail\n• Ability to work in a fast-paced environment\n\n**What We Offer:**\n• Competitive salary and benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology s...
catchi
lib/data/job-demo.ts
TypeScript
04d0c2020cec6595c01e4051eae4b89b9040dfb0422a46c0297a9e63af41c219
1
896
innovative solutions.", "description": "\n**About the Role:**\nInnoCore is seeking a talented QA Engineer to join our dynamic team. You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.\n\n**Key Responsibilities:**\n• Collaborate with ...
catchi
lib/data/job-demo.ts
TypeScript
67fef9cb1c256b4ec771d377b8449bb6ac3a20d1df07cbfac9ff904f1236b2b8
2
896
60 }, "education_levels": [ { "definition": "Associate Degree", "order": 2, "id": 61 }, { "definition": "Bachelor's Degree", "order": 3, "id": 62 } ] } ], "created": "202...
catchi
lib/data/job-demo.ts
TypeScript
65741a8785ed5d26cf7f31ebedc4fcadf00dc33207e2892ef6d868d646936ab6
3
896
[ { "id": 77, "language_level": { "name": "Basic", "id": 78 }, "language": { "name": "Dutch", "id": 79 } }, { "id": 80, "language_level": { "name": "Native", "id": 81 }, ...
catchi
lib/data/job-demo.ts
TypeScript
d591741ff7806aa9c609fc53cc8aa8d79608cbaa5dae2133948e1b7042e0a8bc
4
896
"CAD", "order": 4, "id": 94 }, "required_skills": [ { "definition": "Docker", "order": 9, "id": 95 }, { "definition": "AWS", "order": 8, "id": 96 }, { "definition": "PHP", "order": 19, "id": 97 ...
catchi
lib/data/job-demo.ts
TypeScript
182b7cbd76d453be3f649515d9753c9107abf1e47b22e08fb77fb9f326738bdc
5
896
", "description": "TechNova Solutions is a leading technology company focused on delivering innovative solutions.", "updated_at": "2024-03-31T08:32:30.293Z", "founded_at": "2007-01-01", "country": 111, "city": 113, "state": 112 }, "location_type": { "definition": "Remot...
catchi
lib/data/job-demo.ts
TypeScript
11d8c61f1b0ed7674025bc35e98a898f0f3a4fb422014ee1afdca50483bfd35b
6
896
"Unknown City" }, "company": { "id": 137, "company_size": { "definition": "Enterprise (1000+ employees)", "order": 5, "id": 136 }, "logo": "https://logo.clearbit.com/synergytech.com", "created": "2021-11-28T05:40:03.166Z", "name": "SynergyTech", ...
catchi
lib/data/job-demo.ts
TypeScript
5849efa11e7a55bb5e63d4080246299afc73c1e46daab34d599d057e5bef46bb
7
896
\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology stack\n", "monthly_salary": "4450", "anual_payment_number": 13, "weekly_hours": "40.0", "start_date": "2024-07-19", "end_date": "2025-10-10" }, {...
catchi
lib/data/job-demo.ts
TypeScript
ca3e6a04139c0907790ab2c9da4ec932f3bcc8f3df21aa4a5e05ef62e47c40e6
8
896
n\n**What We Offer:**\n• Competitive salary and benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology stack\n", "monthly_salary": "7891", "anual_payment_number": 14, "weekly_hours": "40.0", "...
catchi
lib/data/job-demo.ts
TypeScript
256bba777c0b976a7a94ee4693f9360f4a23affe9cb394b4cc7ac4745207c5e3
9
896
n• Participate in code reviews and provide constructive feedback\n• Contribute to technical documentation\n• Participate in agile development processes\n• Write clean, maintainable, and efficient code\n\n**Requirements:**\n• Understanding of software development lifecycle\n• Experience with version control systems\n\n*...
catchi
lib/data/job-demo.ts
TypeScript
ca9b196e580d01b6bac15ca7fd5009453148848b44ecf41c61191b404e343ff6
10
896
exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.\n\n**Key Responsibilities:**\n• Participate in agile development processes\n• Develop and maintain high-quality software applications\n• Participate in code reviews and provide constructive feedback\n...
catchi
lib/data/job-demo.ts
TypeScript
a1e356e2a87a9dda6d5ea292cd4371704b421c343e119ba0b2f85cddb36bf417
11
896
: [ { "definition": "Master's Degree", "order": 4, "id": 236 }, { "definition": "Associate Degree", "order": 2, "id": 237 } ] } ], "created": "2024-11-01T17:31:51.473Z", "title": "Da...
catchi
lib/data/job-demo.ts
TypeScript
f2d31646d2d58bc8a22168b21c96796062f7cece8ed1be4f3dc0d749cbe7fafe
12
896
", "id": 253 }, "language": { "name": "Dutch", "id": 254 } }, { "id": 255, "language_level": { "name": "Advanced", "id": 256 }, "language": { "name": "German", "id": 257 } ...
catchi
lib/data/job-demo.ts
TypeScript
f3ef9d098b52cf22f3b068005fa920692f0fcd6bc45c0fba3a9f2402a6eb4bae
13
896
, "id": 271 }, "required_skills": [ { "definition": "SQL", "order": 11, "id": 272 }, { "definition": "Git", "order": 13, "id": 273 }, { "definition": "HTML/CSS", "order": 16, "id": 274 }, { ...
catchi
lib/data/job-demo.ts
TypeScript
e6690717598ed49ad56c46f8b4e5b7360eae8e16d4a2fe7d2b78cddf1fc8867e
14
896
-01-01", "country": 285, "city": 287, "state": 286 }, "location_type": { "definition": "Remote", "order": 1, "id": 290 }, "employment_type": { "definition": "Full-time", "order": 1, "id": 291 }, "currency": { "definition": "EUR", ...
catchi
lib/data/job-demo.ts
TypeScript
5b8741bb9efd8414f986acae07e8fc32a19a233ebfae9be832166362bbf977fe
15
896
n", "monthly_salary": "9815", "anual_payment_number": 12, "weekly_hours": "35.0", "start_date": "2024-05-18", "end_date": "2025-10-28" }, { "id": 334, "city": { "id": 316, "state": { "id": 315, "country": { "name": "Australia", "code": "AU"...
catchi
lib/data/job-demo.ts
TypeScript
e5ab7bfdfc56f8a7c7c7d292958dfb5c1873bc033305bea7f58b81f58fc212c9
16
896
• Ability to work in a fast-paced environment\n• Understanding of software development lifecycle\n• Experience with version control systems\n\n**What We Offer:**\n• Competitive salary and benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work envi...
catchi
lib/data/job-demo.ts
TypeScript
471de7c264b8f9ded9f2e9be9bb945e7c528f857a6447aa45d41e0df2bd4a6d5
17
896
04-01T01:14:41.364Z", "title": "Senior Software Engineer", "summary": "SmartFlow Systems is seeking a talented Senior Software Engineer to join our dynamic team. You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.", "descript...
catchi
lib/data/job-demo.ts
TypeScript
7285be59947fbb780c614ca5ffca89cc777b53d0aa4d63fee005abd7ea129b03
18
896
: { "name": "Spanish", "id": 380 } } ], "required_education": [ { "field_of_study": { "definition": "Mathematics", "order": 4, "id": 381 }, "education_levels": [ { "definition": "Bachelor's Degree...
catchi
lib/data/job-demo.ts
TypeScript
183a56a1bd40a3d0ce0150bd1d7e536de4464b1baa05a73147024a1b5a11257e
19
896
"order": 1, "id": 395 }, "required_skills": [ { "definition": "React", "order": 3, "id": 396 }, { "definition": "MongoDB", "order": 12, "id": 397 }, { "definition": "TypeScript", "order": 2, "id": 398 ...
catchi
lib/data/job-demo.ts
TypeScript
ec5cf7f2530eaaa216a3a02b47fc7994771bc595c415f8bfc2a6ebd5bab3fa89
20
896
-01", "country": 409, "city": 411, "state": 410 }, "location_type": { "definition": "On-site", "order": 2, "id": 414 }, "employment_type": { "definition": "Part-time", "order": 2, "id": 415 }, "currency": { "definition": "AUD", "o...
catchi
lib/data/job-demo.ts
TypeScript
7dff65df8efd9a17b8a15977fc69084aded0b6c8165a3b3ee8502c4558c549b4
21
896
: "Medium (51-200 employees)", "order": 3, "id": 435 }, "logo": "https://logo.clearbit.com/cloudbridge.com", "created": "2022-07-13T01:03:18.462Z", "name": "CloudBridge", "website_url": "https://cloudbridge.com", "description": "CloudBridge is a leading technology com...
catchi
lib/data/job-demo.ts
TypeScript
83419915a6619608c864c600758ed6c6ebb310bf49dd7a948b6101946e7891e2
22
896
": 477, "city": { "id": 457, "state": { "id": 456, "country": { "name": "Spain", "code": "ES", "id": 455 }, "name": "Catalonia" }, "name": "Badalona" }, "company": { "id": 459, "company_size": { "defini...
catchi
lib/data/job-demo.ts
TypeScript
f69dec7766f72c257f8ab8ccf30559375368463d986cf760a9c5c8e7b4d5acd5
23
896
salary and benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology stack\n", "monthly_salary": "10819", "anual_payment_number": 13, "weekly_hours": "40.0", "start_date": "2024-09-28", "end_...
catchi
lib/data/job-demo.ts
TypeScript
4e3cdd9e7cabe3ca848a26da0194861b738a9b526a17488a05f0274427297a8f
24
896
:34.290Z", "title": "Full Stack Developer", "summary": "CodeCraft Studios is seeking a talented Full Stack Developer to join our dynamic team. You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.", "description": "\n**About th...
catchi
lib/data/job-demo.ts
TypeScript
61573750ab72a7037d6da2fa4a11ba4957eb8fc098126e160e364a41b3aa7cb9
25
896
Technology", "order": 3, "id": 523 }, "education_levels": [ { "definition": "High School", "order": 1, "id": 524 }, { "definition": "Associate Degree", "order": 2, "id": 525 ...
catchi
lib/data/job-demo.ts
TypeScript
3d3268391c08351760cd066bed41363c9ca4a4bd509528248410878aedc5b5ed
26
896
id": 538 }, { "definition": "AWS", "order": 8, "id": 539 }, { "definition": "Python", "order": 5, "id": 540 }, { "definition": "Kubernetes", "order": 10, "id": 541 } ], "required_languages": [ ...
catchi
lib/data/job-demo.ts
TypeScript
424d069986bb9d94e8d49629afb867e0be7b2b0dce342d721bed865811ddc0f5
27
896
employment_type": { "definition": "Contract", "order": 3, "id": 556 }, "currency": { "definition": "CAD", "order": 4, "id": 557 }, "required_skills": [ { "definition": "JavaScript", "order": 1, "id": 558 }, { "definiti...
catchi
lib/data/job-demo.ts
TypeScript
8dd0bee725f33a470a16599139419409e4993df8b9d22845fe930241089ef487
28
896
"name": "France", "code": "FR", "id": 579 }, "name": "Provence-Alpes-Côte d'Azur" }, "name": "Unknown City" }, "company": { "id": 583, "company_size": { "definition": "Small (11-50 employees)", "order": 2, "id": 582 }, ...
catchi
lib/data/job-demo.ts
TypeScript
414c6432c7f2813a8a0bd1f7d33456d3947e0d24828cb99179586a748735d147
29
896
\n• Experience with version control systems\n\n**What We Offer:**\n• Competitive salary and benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology stack\n", "monthly_salary": "7763", "anual_payment_nu...
catchi
lib/data/job-demo.ts
TypeScript
21a84a657a365af6e76e21ce5658b09f684df789a9b2344ef0c81cd0dcf6f299
30
896
You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.\n\n**Key Responsibilities:**\n• Troubleshoot and debug applications\n• Participate in code reviews and provide constructive feedback\n• Stay up-to-date with emerging technologies and in...
catchi
lib/data/job-demo.ts
TypeScript
1b1f356ee081293cb6ecef1fd0504e1375ec6a2326c80c4a378be6b2d189647d
31
896
, "summary": "CloudBridge is seeking a talented DevOps Engineer to join our dynamic team. You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.", "description": "\n**About the Role:**\nCloudBridge is seeking a talented DevOps Engin...
catchi
lib/data/job-demo.ts
TypeScript
2a7c1d5e3caa9835587062e571c010c5469a8fb003904161aa03dab2ebbfe067
32
896
, "summary": "CloudBridge is seeking a talented Machine Learning Engineer to join our dynamic team. You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.", "description": "\n**About the Role:**\nCloudBridge is seeking a talented Ma...
catchi
lib/data/job-demo.ts
TypeScript
753cfe523959f2ee8ae7e77f2bd05c05496115969a6fd47e9ff86a8038109add
33
896
id": 677 }, "language": { "name": "German", "id": 678 } }, { "id": 679, "language_level": { "name": "Fluent", "id": 680 }, "language": { "name": "Chinese", "id": 681 } } ], ...
catchi
lib/data/job-demo.ts
TypeScript
274a749c2b1800e684d6057e7fd200f7a4104dfb6369023940daf4a04174574f
34
896
: { "definition": "AUD", "order": 5, "id": 695 }, "required_skills": [ { "definition": "HTML/CSS", "order": 16, "id": 696 }, { "definition": "Angular", "order": 18, "id": 697 }, { "definition": "React", ...
catchi
lib/data/job-demo.ts
TypeScript
00f9e89b97a3436332b5eb6911158f3942f5edca94cdfb1a911f6c4b308891c0
35
896
(11-50 employees)", "order": 2, "id": 719 }, "logo": "https://logo.clearbit.com/cloudfirsttechnologies.com", "created": "2020-05-20T13:56:51.965Z", "name": "CloudFirst Technologies", "website_url": "https://cloudfirsttechnologies.com", "description": "CloudFirst Techn...
catchi
lib/data/job-demo.ts
TypeScript
cde222cfbd570435aaead7c31a444349b750f7368558c14602241fa6b4301bb6
36
896
: { "id": 739, "state": { "id": 738, "country": { "name": "United Kingdom", "code": "GB", "id": 737 }, "name": "England" }, "name": "Liverpool" }, "company": { "id": 741, "company_size": { "definition": "St...
catchi
lib/data/job-demo.ts
TypeScript
c50c45fe628a3aa2dd790a20c54d1a27d0bec4430c02ce052882b3e473b5d18f
37
896
control systems\n• Excellent communication and teamwork abilities\n\n**What We Offer:**\n• Competitive salary and benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology stack\n", "monthly_salary": "9846",...
catchi
lib/data/job-demo.ts
TypeScript
2fbcdfe5be3cfabd6075c4b725ca9232c341164cff4f79a44610c3a2e8247dc9
38
896
, "summary": "QuantumLeap Inc is seeking a talented System Administrator to join our dynamic team. You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.", "description": "\n**About the Role:**\nQuantumLeap Inc is seeking a talented...
catchi
lib/data/job-demo.ts
TypeScript
5a33bac8693116e19adbd63610ff07aedb9df006f341addfc8ed63954c82e620
39
896
, { "id": 803, "language_level": { "name": "Native", "id": 804 }, "language": { "name": "Italian", "id": 805 } } ], "required_education": [ { "field_of_study": { "definition": "Business Administra...
catchi
lib/data/job-demo.ts
TypeScript
ca7213b924603a7c9317b3511deee2d6bfddb35b535313bbee91aad978a3d273
40
896
4, "id": 819 }, "required_skills": [ { "definition": "SQL", "order": 11, "id": 820 }, { "definition": "Docker", "order": 9, "id": 821 }, { "definition": "Vue.js", "order": 17, "id": 822 }, { ...
catchi
lib/data/job-demo.ts
TypeScript
dd325770263fdea13c97d21dcc622c4b9e6b520b30ad659e7da88c400a72323a
41
896
"2006-01-01", "country": 833, "city": 835, "state": 834 }, "location_type": { "definition": "On-site", "order": 2, "id": 838 }, "employment_type": { "definition": "Freelance", "order": 4, "id": 839 }, "currency": { "definition": "CAD", ...
catchi
lib/data/job-demo.ts
TypeScript
2f0fde6d94c089aa9b9f1c08ad65146467c15fee7c49dc36eb234b3b538cc9b9
42
896
{ "id": 861, "country": { "name": "Spain", "code": "ES", "id": 860 }, "name": "Andalusia" }, "name": "Unknown City" }, "company": { "id": 864, "company_size": { "definition": "Medium (51-200 employees)", "order...
catchi
lib/data/job-demo.ts
TypeScript
d9fd77a5ebe07f66bfe1147542a8a7ee557ac853fca1be78a18b17cbf250d76b
43
896
-08-11", "end_date": "2025-02-06" }, { "id": 898, "city": { "id": 882, "state": { "id": 881, "country": { "name": "Canada", "code": "CA", "id": 880 }, "name": "Saskatchewan" }, "name": "Unknown City" }, "compan...
catchi
lib/data/job-demo.ts
TypeScript
d2b3bffba94b73653193a1c4b7b20d9c82c3a5ea9139352dadbe46d64ff15c4b
44
896
What We Offer:**\n• Competitive salary and benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology stack\n", "monthly_salary": "9087", "anual_payment_number": 12, "weekly_hours": "35.0", "start...
catchi
lib/data/job-demo.ts
TypeScript
8089090243106537d8e1b3c653c33f47097a4560457c2e4850d2a765548050d8
45
896
"definition": "PhD", "order": 5, "id": 926 }, { "definition": "High School", "order": 1, "id": 927 } ] } ], "created": "2024-05-18T06:52:37.648Z", "title": "Mobile Developer", "summary": "NextGen Soft...
catchi
lib/data/job-demo.ts
TypeScript
00f2007e626c96fd3a96102d413281cbc1ffc8d505c42d44674bc9b2d500c8b7
46
896
name": "Intermediate", "id": 943 }, "language": { "name": "English", "id": 944 } } ], "required_education": [ { "field_of_study": { "definition": "Computer Science", "order": 1, "id": 945 }, "...
catchi
lib/data/job-demo.ts
TypeScript
c7ec61269b4be9c88ffaa60fe282af08dd6ebe30de540983b12773cbe4c4091c
47
896
, "order": 17, "id": 959 }, { "definition": "C#", "order": 7, "id": 960 }, { "definition": "Java", "order": 6, "id": 961 } ], "required_languages": [ { "id": 962, "language_level": { "na...
catchi
lib/data/job-demo.ts
TypeScript
a5965bbc68ad495d20392967060b7e2bf639ca1f969c5ac0e5edd56111b8dbaa
48
896
: { "definition": "Remote", "order": 1, "id": 977 }, "employment_type": { "definition": "Freelance", "order": 4, "id": 978 }, "currency": { "definition": "CAD", "order": 4, "id": 979 }, "required_skills": [ { "definition": "Grap...
catchi
lib/data/job-demo.ts
TypeScript
b63a74d28425a7e725a3fac958fbd5df8957bae4faf2175f3d1b9d0df73f2ae7
49
896
", "website_url": "https://techforward.com", "description": "TechForward is a leading technology company focused on delivering innovative solutions.", "updated_at": "2024-04-23T04:54:21.698Z", "founded_at": "2004-01-01", "country": 994, "city": 996, "state": 995 }, "loc...
catchi
lib/data/job-demo.ts
TypeScript
b1ae2fab17eae577fcd2298597eb02bfb98891b05d19d0c62ab85f157c0d2b06
50
896
": "2020-12-03T14:02:58.713Z", "name": "CloudFirst Technologies", "website_url": "https://cloudfirsttechnologies.com", "description": "CloudFirst Technologies is a leading technology company focused on delivering innovative solutions.", "updated_at": "2022-08-19T04:34:59.178Z", "founded_at...
catchi
lib/data/job-demo.ts
TypeScript
04db38dece72d75500c5658c2b42051aa4167b7a2407fd764c9e9d25c6610d20
51
896
: 1035, "country": { "name": "Spain", "code": "ES", "id": 1034 }, "name": "Madrid" }, "name": "Alcalá de Henares" }, "company": { "id": 1038, "company_size": { "definition": "Medium (51-200 employees)", "order": 3, ...
catchi
lib/data/job-demo.ts
TypeScript
86cc3f9279aa559c26a89d0932304d46653e6a8cec7dca545c6c5fb49ad65ac4
52
896
10026", "anual_payment_number": 14, "weekly_hours": "35.0", "start_date": "2024-10-07", "end_date": "2025-11-04" }, { "id": 1074, "city": { "id": 1056, "state": { "id": 1055, "country": { "name": "Netherlands", "code": "NL", "id": 105...
catchi
lib/data/job-demo.ts
TypeScript
5b4a65092aa4e13914fb9c533d952c857ff5c7747dbe008a1f32260c5d56636b
53
896
Understanding of software development lifecycle\n• Ability to work in a fast-paced environment\n\n**What We Offer:**\n• Competitive salary and benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology stack\n", ...
catchi
lib/data/job-demo.ts
TypeScript
9f36a013c637f0333f805346fb62fb7d6167f28a148f5e6130649cea8a7f7b4a
54
896
our mission of delivering innovative solutions.", "description": "\n**About the Role:**\nInnovateLabs is seeking a talented Cloud Architect to join our dynamic team. You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.\n\n**Key Respon...
catchi
lib/data/job-demo.ts
TypeScript
a978019aabf23583200205f5561ac2e9fcfb1ddbc966b61063600fd2caf20b3e
55
896
High School", "order": 1, "id": 1121 } ] }, { "field_of_study": { "definition": "Mathematics", "order": 4, "id": 1122 }, "education_levels": [ { "definition": "PhD", "order": 5, ...
catchi
lib/data/job-demo.ts
TypeScript
5adab6753e268292a4304bffebed5be3f1ea59af1acd9297dc2edafc1d92a790
56
896
[ { "id": 1138, "language_level": { "name": "Basic", "id": 1139 }, "language": { "name": "English", "id": 1140 } }, { "id": 1141, "language_level": { "name": "Advanced", "id": 1142 ...
catchi
lib/data/job-demo.ts
TypeScript
f6291aa1be5321ce619addb571d3b7a0666e9059f3f8ad39e3ad944f9f4c5f68
57
896
", "country": 1153, "city": 1155, "state": 1154 }, "location_type": { "definition": "On-site", "order": 2, "id": 1158 }, "employment_type": { "definition": "Full-time", "order": 1, "id": 1159 }, "currency": { "definition": "AUD", ...
catchi
lib/data/job-demo.ts
TypeScript
8028277313e7a0e61323292d45c0667fceadf01cc713ed0a9e1a4000ebc1c213
58
896
"updated_at": "2025-01-22T13:29:26.298Z", "founded_at": "2002-01-01", "country": 1170, "city": 1172, "state": 1171 }, "location_type": { "definition": "On-site", "order": 2, "id": 1175 }, "employment_type": { "definition": "Contract", "order": 3, ...
catchi
lib/data/job-demo.ts
TypeScript
042cc4e59d2d94981c91f0920fc52a00148d33947d88786545b1e74a746483a4
59
896
-07-13T13:49:01.479Z", "name": "InnoCore", "website_url": "https://innocore.com", "description": "InnoCore is a leading technology company focused on delivering innovative solutions.", "updated_at": "2025-05-15T12:10:13.476Z", "founded_at": "2014-01-01", "country": 1190, "city"...
catchi
lib/data/job-demo.ts
TypeScript
c5e0453e8f3de10e5e36a5fba55b9f4a14bbbc40aa83b50fa77a9595ef00a67d
60
896
benefits package\n• Professional development opportunities\n• Flexible working arrangements\n• Collaborative and inclusive work environment\n• Cutting-edge technology stack\n", "monthly_salary": "4245", "anual_payment_number": 13, "weekly_hours": "30.0", "start_date": "2024-02-22", "end_date": "2025...
catchi
lib/data/job-demo.ts
TypeScript
dc5eb3252fe64b711cd715404cc8043f7958a3deca7356a4899682800aa10be3
61
896
our mission of delivering innovative solutions.", "description": "\n**About the Role:**\nFlexiSoft is seeking a talented Lead Developer to join our dynamic team. You'll work on exciting projects using cutting-edge technologies while contributing to our mission of delivering innovative solutions.\n\n**Key Responsibi...
catchi
lib/data/job-demo.ts
TypeScript
efbaeb7c0147b9fa594fa75b07fef2e299bd40682fa3048966ddf75e1399f1de
62
896
: 4, "id": 1263 }, "education_levels": [ { "definition": "Master's Degree", "order": 4, "id": 1264 }, { "definition": "Bachelor's Degree", "order": 3, "id": 1265 } ] } ...
catchi
lib/data/job-demo.ts
TypeScript
cc3e94f35e00adaeae9360c54eaaff3b70d7bbd7b44450823963488cdae3db2d
63
896
, "language_level": { "name": "Fluent", "id": 1281 }, "language": { "name": "Spanish", "id": 1282 } }, { "id": 1283, "language_level": { "name": "Fluent", "id": 1284 }, "language": { ...
catchi
lib/data/job-demo.ts
TypeScript
fff029c2a2f1d9c8e3ce2ade29659de7093d82eec94ab731dd8f5ed6f70fb0c1
64
896