diff --git a/src/layout/index.tsx b/src/layout/index.tsx
index e33ebbd..42f8a15 100644
--- a/src/layout/index.tsx
+++ b/src/layout/index.tsx
@@ -2,12 +2,14 @@ import React from "react";
import { LayoutProps } from "@/interfaces/components";
import { Container } from "@chakra-ui/react";
import Header from "./header";
+import Footer from "./footer";
const Index = ({ children }: LayoutProps) => {
return (
<>
{children}
+
>
);
};