Skip to content

Commit 7535dfa

Browse files
committed
fix favicon at experience page
1 parent 1ebb700 commit 7535dfa

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

app/hire-me-as-dev-rel/page.tsx

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
1-
import { redirect } from "next/navigation";
1+
import React from "react";
2+
import { Metadata } from "next";
3+
4+
export const metadata: Metadata = {
5+
title: "Experience | Sumit So",
6+
description: "Sumit So's work experience and resume.",
7+
};
28

39
export default function HireMePage() {
4-
redirect("/sumit-mor.pdf");
10+
return (
11+
<div className="fixed inset-0 z-[9999] bg-white">
12+
<iframe
13+
src="/sumit-mor.pdf#view=FitH"
14+
className="w-full h-full border-none"
15+
title="Sumit So Resume"
16+
>
17+
<p>
18+
Your browser does not support iframes.
19+
<a href="/sumit-mor.pdf">Download the PDF instead.</a>
20+
</p>
21+
</iframe>
22+
</div>
23+
);
524
}

0 commit comments

Comments
 (0)