We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed9b9c0 commit 7c149abCopy full SHA for 7c149ab
docs/app/[lang]/(home)/page.tsx
@@ -1,9 +1,16 @@
1
+import type { Metadata } from "next";
2
import { Apps } from "./components/apps";
3
import { CallToAction } from "./components/cta";
4
import { Features } from "./components/features";
5
import { Hero } from "./components/hero";
6
import { Social } from "./components/social";
7
8
+export const metadata: Metadata = {
9
+ title: "Production-grade Turborepo template for Next.js apps | next-forge",
10
+ description:
11
+ "A monorepo template designed to have everything you need to build your new SaaS app as thoroughly as possible. Free and open source, forever.",
12
+};
13
+
14
const Home = () => (
15
<main className="container mx-auto px-0 pb-24">
16
<Hero />
0 commit comments