We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ebb700 commit 7535dfaCopy full SHA for 7535dfa
app/hire-me-as-dev-rel/page.tsx
@@ -1,5 +1,24 @@
1
-import { redirect } from "next/navigation";
+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
+};
8
9
export default function HireMePage() {
- 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
+ );
24
}
0 commit comments