release careers page

This commit is contained in:
Johannes
2023-08-30 10:57:02 +02:00
parent 79e66ee408
commit 288ec89d93
2 changed files with 11 additions and 11 deletions
@@ -264,11 +264,11 @@ export default function Header() {
className="text-base font-medium text-slate-400 hover:text-slate-700 dark:hover:text-slate-300">
Blog {/* <p className="bg-brand inline rounded-full px-2 text-xs text-white">1</p> */}
</Link>
{/* <Link
<Link
href="/careers"
className="text-base font-medium text-slate-400 hover:text-slate-700 dark:hover:text-slate-300">
Careers <p className="bg-brand inline rounded-full px-2 text-xs text-white">2</p>
</Link> */}
</Link>
<Link
href="/concierge"
@@ -372,7 +372,7 @@ export default function Header() {
<Link href="#pricing">Pricing</Link>
<Link href="/docs">Docs</Link>
<Link href="/blog">Blog</Link>
{/* <Link href="/careers">Careers</Link> */}
<Link href="/careers">Careers</Link>
<Button
variant="secondary"
EndIcon={GitHubIcon}
+8 -8
View File
@@ -1,20 +1,21 @@
import HeroTitle from "@/components/shared/HeroTitle";
import Layout from "@/components/shared/Layout";
import Link from "next/link";
/* const Roles = [
const Roles = [
{
name: "Full-Stack Engineer",
description: "Join early and be a part of our journey from start to IPO 🚀",
location: "Worldwide",
workplace: "Remote",
},
} /*
{
name: "Junior Full-Stack Engineer",
description: "All you want is write code and learn? You're exactly right!",
location: "Worldwide",
workplace: "Remote",
},
]; */
},*/,
];
export default function CareersPage() {
return (
@@ -27,10 +28,9 @@ export default function CareersPage() {
headingPt2="decisions."
subheading="We are currently not hiring. Contributions are always welcome!"
/>
{/*
<div className="mx-auto w-3/4">
{Roles.map((role) => (
{Roles.map((role) => (
<Link
href="https://formbricks.notion.site/Work-at-Formbricks-6c3ad218b2c7461ca2714ce2101730e4?pvs=4"
target="_blank"
@@ -41,7 +41,7 @@ export default function CareersPage() {
</div>
</Link>
))}
</div>*/}
</div>
</Layout>
);
}