diff --git a/src/components/layout/footer.tsx b/src/components/layout/footer.tsx
new file mode 100644
index 0000000..6874b51
--- /dev/null
+++ b/src/components/layout/footer.tsx
@@ -0,0 +1,5 @@
+const Footer = () => {
+ return
footer
;
+};
+
+export default Footer;
diff --git a/src/components/ui/frame.tsx b/src/components/ui/frame.tsx
new file mode 100644
index 0000000..1fa2fb4
--- /dev/null
+++ b/src/components/ui/frame.tsx
@@ -0,0 +1,30 @@
+import { useRouter } from 'next/router';
+
+interface FrameProps {
+ title: string;
+ content: string;
+ buttonText: string;
+ address: string;
+}
+
+const Frame = ({ title, content, buttonText, address }: FrameProps) => {
+ const router = useRouter();
+ return (
+ <>
+
+ {title}
+
+
{content}
+
+
+
+ >
+ );
+};
+
+export default Frame;