added terminal design and tech stack

This commit is contained in:
fgrreloaded
2025-02-16 14:56:18 +05:30
parent e5badb108c
commit d31b03bf77
8 changed files with 358 additions and 8 deletions

View File

@@ -1,7 +1,13 @@
import { baseOptions } from "@/app/layout.config";
import { HomeLayout } from "fumadocs-ui/layouts/home";
import type { Metadata } from "next";
import type { ReactNode } from "react";
export const metadata: Metadata = {
title: "Better-T-Stack",
description: "Unleash the power of better-t-stack",
};
export default function Layout({ children }: { children: ReactNode }) {
return <HomeLayout {...baseOptions}>{children}</HomeLayout>;
}