diff --git a/app/layout.tsx b/app/layout.tsx index 4cff7f1..c94edc3 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,14 +3,17 @@ import * as React from "react"; import { Inter } from "next/font/google"; import type { Metadata } from "next"; import Navigation from "@/components/Navigation"; +import Footer from "@/components/Footer"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "GPT-3 Playground", - description: "A playground for GPT-3", + title: "Pathfinder", + description: "An Erasmus+ project for higher education", }; +// TODO: The content currently scrolls behind the footer. + export default function RootLayout({ children, }: { @@ -18,9 +21,11 @@ export default function RootLayout({ }) { return ( +