added testimonial and footer

This commit is contained in:
fgrreloaded
2025-02-18 19:42:29 +05:30
parent 8c6b937d50
commit 56febf0e53
5 changed files with 101 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ import { baseOptions } from "@/app/layout.config";
import { HomeLayout } from "fumadocs-ui/layouts/home";
import type { Metadata } from "next";
import type { ReactNode } from "react";
import Footer from "./_components/Footer";
import Navbar from "./_components/Navbar";
export const metadata: Metadata = {
@@ -14,6 +15,7 @@ export default function Layout({ children }: { children: ReactNode }) {
<HomeLayout {...baseOptions}>
<Navbar />
{children}
<Footer />
</HomeLayout>
);
}