diff --git a/apps/website/app/jobs/page.tsx b/apps/website/app/jobs/page.tsx
new file mode 100644
index 0000000..809a94e
--- /dev/null
+++ b/apps/website/app/jobs/page.tsx
@@ -0,0 +1,111 @@
+import { Container } from "@/components/Container";
+import { Badge } from "@/components/ui/badge";
+import { Button } from "@/components/ui/button";
+import AnimatedGridPattern from "@/components/ui/animated-grid-pattern";
+import { MapPin, ArrowRight } from "lucide-react";
+import Link from "next/link";
+import type { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Dokploy Jobs & Open Positions",
+ description:
+ "Join Dokploy and help developers and teams ship faster with open-source and scalable deployment tools built for the modern web.",
+};
+
+const OPEN_POSITIONS = [
+ {
+ title: "Founding Engineer",
+ region: "Central America, South America",
+ description: "Become the first official hire at Dokploy.",
+ href: "https://app.talenttracker.io/288/founding-engineer",
+ },
+];
+
+export default function JobsPage() {
+ return (
+
+
+
+ {/* Hero */}
+
+
+
+
+ Join our company and help redefine how the world deploys software.
+
+
+ We're a small, focused team building tools that developers
+ actually love. If you care about open source, developer experience,
+ and shipping things that matter — you'll fit right in.
+
+
+
+
+
+
+ {/* Open Positions */}
+
+
+
+ Open positions
+
+
+ {OPEN_POSITIONS.length > 0 ? (
+
+ {OPEN_POSITIONS.map((position) => (
+
+
+
+
+ {position.title}
+
+
+
+ {position.region}
+
+
+
+ {position.description}
+
+
+
+
+ ))}
+
+ ) : (
+
+
+ No open positions at the moment. Check back soon.
+