Skip to content

Commit

Permalink
update: footer
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Jun 2, 2024
1 parent db0036e commit f12f076
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions docs/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import "./globals.css";
import { Analytics } from "@vercel/analytics/react";
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import Link from "next/link";

const inter = Inter({ subsets: ["latin"] });

Expand Down Expand Up @@ -49,11 +50,15 @@ export default function RootLayout({
<body className={inter.className}>
{children}
<footer>
<p className="text-center text-gray-600">
<p className="p-1 text-center text-gray-600">
Created by{" "}
<a className="text-blue-500 hover:underline" href="#">
<Link
className="text-blue-500 hover:underline"
href="https://github.com/gabriel-logan"
target="_blank"
>
Gabriel Logan &copy; 2024
</a>
</Link>
</p>
</footer>
<Analytics />
Expand Down

0 comments on commit f12f076

Please sign in to comment.