Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
fix: open graph
Browse files Browse the repository at this point in the history
  • Loading branch information
jspark2000 committed Nov 11, 2024
1 parent b019931 commit 87e2229
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
Binary file added frontend/public/magic-girl.jpeg
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 frontend/public/wonjae_og.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions frontend/src/app/(public)/gongju_wonjae/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import type { Metadata } from 'next'
import Image from 'next/image'

export const metadata: Metadata = {
title: '이원재 줍기',
description: '성공하면 상금 ??,???원을 드려요',
openGraph: {
images: ['/wonjae_og.png']
}
}

export default async function SurveyPage() {
return (
<main className="mx-auto flex w-full max-w-7xl flex-grow flex-col items-center justify-start p-6 lg:px-8">
<div className="flex w-full flex-col items-center gap-y-10">
<Image
width={1080}
height={1080}
priority={true}
src="/magic-girl.jpeg"
alt="hero image"
className="h-80 w-auto lg:h-[640px]"
/>
</div>
</main>
)
}

0 comments on commit 87e2229

Please sign in to comment.