We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd1a463 commit f7350c5Copy full SHA for f7350c5
1 file changed
front/src/app/page.tsx
@@ -1,8 +1,13 @@
1
+import type { Metadata } from "next";
2
import { EmbalseSearch } from "@/pods/embalse-search";
3
import { getEmbalsesCollection } from "@/pods/embalse-search/api";
4
5
export const revalidate = 300;
6
7
+export const metadata: Metadata = {
8
+ title: { absolute: "Estado de los embalses de España — InfoEmbalse" },
9
+};
10
+
11
const RootPage = async () => {
12
const embalses = await getEmbalsesCollection();
13
0 commit comments