Skip to content

Commit

Permalink
feat: Add route-specific metadata for resume/zoom/meet
Browse files Browse the repository at this point in the history
  • Loading branch information
rudyorre committed Feb 6, 2024
1 parent 1f226f4 commit 641f742
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/meet/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { permanentRedirect } from 'next/navigation'
import type { Metadata } from 'next'

export const metadata: Metadata = {
title: "Rudy's Personal Google Meet",
description: 'Click to join meeting.',
};
export default function ResumePage() {
permanentRedirect('https://meet.google.com/her-pqgs-ovd');
return <>
Expand Down
6 changes: 6 additions & 0 deletions src/app/resume/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { permanentRedirect } from 'next/navigation'
import type { Metadata } from 'next'

export const metadata: Metadata = {
title: 'Rudy Orre Resume',
description: 'Take a look at my resume.',
};

export default function ResumePage() {
permanentRedirect('https://drive.google.com/file/d/1p8nSZYy8jgPrRdBCm4CZ3DQBhIJKudbN/view?usp=sharing');
Expand Down
6 changes: 6 additions & 0 deletions src/app/zoom/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { permanentRedirect } from 'next/navigation'
import type { Metadata } from 'next'

export const metadata: Metadata = {
title: "Rudy's Personal Zoom Meeting",
description: 'Click to join meeting.',
};

export default function ResumePage() {
permanentRedirect('https://us05web.zoom.us/j/8749675790?pwd=K2w4aFJ4eHBKQzV3d3pUcXBjT2dHUT09');
Expand Down

0 comments on commit 641f742

Please sign in to comment.