Skip to content

Commit

Permalink
feat: add favicon & open graph info
Browse files Browse the repository at this point in the history
  • Loading branch information
aube-dev committed Aug 31, 2023
1 parent 46b7a53 commit a6f6ee6
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
Binary file added public/opengraph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,45 @@ import BrandSection from '@/components/main/BrandSection';
import HeroSection from '@/components/main/HeroSection';
import PictureSection from '@/components/main/PictureSection';
import RecruitSection from '@/components/main/RecruitSection';
import Head from 'next/head';

export default function Home() {
return (
<>
<Head>
<title>GDSC Soongsil University</title>
<meta
name="description"
content="GDSC Soongsil University는 서로의 실력과 무관하게 시너지를 발휘하는 학생 개발자 커뮤니티입니다."
/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gdscsoongsil.pages.dev" />
<meta property="og:title" content="GDSC Soongsil University" />
<meta
property="og:description"
content="GDSC Soongsil University는 서로의 실력과 무관하게 시너지를 발휘하는 학생 개발자 커뮤니티입니다."
/>
<meta
property="og:image"
content="https://gdscsoongsil.pages.dev/opengraph.png"
/>
<meta property="og:locale" content="ko_KR" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />

<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="GDSC Soongsil University" />
<meta
name="twitter:description"
content="GDSC Soongsil University는 서로의 실력과 무관하게 시너지를 발휘하는 학생 개발자 커뮤니티입니다."
/>
<meta
name="twitter:image"
content="https://gdscsoongsil.pages.dev/opengraph.png"
/>
</Head>
<HeroSection />
<BrandSection />
<ActivitySection />
Expand Down

0 comments on commit a6f6ee6

Please sign in to comment.