Skip to content

Commit

Permalink
Merge pull request #173 from Jaewoook/feature/seo
Browse files Browse the repository at this point in the history
Feature/seo
  • Loading branch information
Jaewoook authored Jan 23, 2024
2 parents 72b0c98 + 101e5a3 commit f9d7041
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 1 deletion.
13 changes: 12 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,18 @@ const RootLayout = ({ children }: PropsWithChildren) => {
return (
<html lang="ko">
<head>
<title>Jaewook Ahn</title>
<title>Jaewook Ahn - Portfolio</title>
<meta name="description" content="Jaewook Ahn's Portfolio Website" />
<meta name="og:type" content="website" />
<meta name="og:title" content="Jaewook Ahn - Portfolio" />
<meta name="og:description" content="Jaewook Ahn's Portfolio Website" />
<meta name="og:url" content="https://portfolio.jaewook.me" />
<meta name="og:image" content="https://portfolio.jaewook.me/thumbnail.png" />
<meta name="og:locale" content="en_US" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@200;300;400;500;600;700;800;900&display=swap"
Expand Down
2 changes: 2 additions & 0 deletions app/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent: *
Allow: /
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
19 changes: 19 additions & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "Jaewook Ahn - Portfolio",
"short_name": "Jaewook Ahn - Portfolio",
"theme_color": "#FFFFFF",
"background_color": "#FFFFFF",
"display": "standalone",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
Binary file added public/thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit f9d7041

@vercel
Copy link

@vercel vercel bot commented on f9d7041 Jan 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.