diff --git a/src/components/layout/frame/frame.tsx b/src/components/layout/frame/frame.tsx index 10639ee..5c7d5f1 100644 --- a/src/components/layout/frame/frame.tsx +++ b/src/components/layout/frame/frame.tsx @@ -1,18 +1,28 @@ +import { Container } from '@/components/layout/container'; +import Button from '@/components/ui/button/button'; +import Link from 'next/link'; + interface FrameProps { title: string; content: string; + buttonText: string; + href: string; } -const Frame = ({ title, content }: FrameProps) => { +const Frame = ({ title, content, buttonText, href }: FrameProps) => { return ( <> -
+

{title}

{content}

- {/* 버튼 컴포넌트 넣을 자리 */} +
+ +
-
+ ); };