Skip to content

Commit

Permalink
Add Footer component for website
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebstep committed Oct 9, 2023
1 parent 1e7f7a6 commit bd145a2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,29 @@ 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,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<head></head>
<body className={inter.className}>
<Navigation />
<main className="container mx-auto">{children}</main>
<Footer />
</body>
</html>
);
Expand Down

0 comments on commit bd145a2

Please sign in to comment.