Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/careers/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default async function JobPage({ params }: PageProps) {
<LinkButton
text="Søk nå"
url="mailto:jobs@yourcompany.com"
className="px-6 py-3 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition"
className="mt-4 inline-block px-4 py-2 border border-background rounded-md text-background hover:bg-background hover:foreground transition w-fit"
/>
</main>
</div>
Expand Down
6 changes: 4 additions & 2 deletions app/careers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ export default function CareersPage() {
<div className="min-h-screen bg-background text-background">
<main className="max-w-4xl mx-auto px-6 py-12">
<section>
<h2 className="text-2xl font-semibold mb-6">Ledige stillinger</h2>
<h2 className="text-foreground text-2xl font-semibold mb-6">
Ledige stillinger
</h2>
{jobOpenings.map((job, index) => (
<div
key={index}
Expand All @@ -39,7 +41,7 @@ export default function CareersPage() {
<LinkButton
text="Se stilling"
url={job.link}
className="mt-4 inline-block px-4 py-2 border border-white rounded-md text-white hover:bg-white hover:text-black transition w-fit"
className="mt-4 inline-block px-4 py-2 border border-background rounded-md text-background hover:bg-background hover:text-foreground transition w-fit"
/>
</div>
))}
Expand Down
19 changes: 19 additions & 0 deletions app/turtle/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import Image from "next/image";
import turtle from "@/public/turtle.png"; // adjust path if needed

export default function Page() {
return (
<div className="flex flex-col items-center justify-center min-h-screen mb-6">
{["Mille", "Karo", "Jane", "Lømo"].map((name, index) => {
return (
<div key={index}>
<Image src={turtle} alt="Turtle" width={400} />
<p className=" text-center text-foreground font-7xl font-bold">
{name}
</p>
</div>
);
})}
</div>
);
}
2 changes: 1 addition & 1 deletion components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function Footer() {
</Link>
<p>Laget av Ninja Turtles 🐢 Mille, Karolina, Johanne og Henrik</p>
</div>
© {new Date().getFullYear()} Your Company. All rights reserved.
© {new Date().getFullYear()} ...Kompis. All rights reserved.
</div>
</footer>
</AnimatedIcons>
Expand Down
3 changes: 3 additions & 0 deletions components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ export function Header() {
} else if (pathname.startsWith("/careers")) {
setTitle(`BLI JOBB${ending}`);
setBade(false);
} else if (pathname.startsWith("/turtle")) {
setTitle(`NINJA TURTLE`);
setBade(false);
} else {
setTitle(`...${ending.toUpperCase()}`);
setBade(false);
Expand Down