This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b019931
commit 87e2229
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} |