mirror of
https://github.com/soconnor0919/personal-website.git
synced 2025-12-15 08:14:43 -05:00
16 lines
456 B
TypeScript
16 lines
456 B
TypeScript
import React from "react";
|
|
import { name } from "~/lib/data";
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className="bg-background pb-4 text-foreground lg:hidden">
|
|
<div className="mx-auto max-w-screen-xl px-4 sm:px-6 lg:px-8">
|
|
<p className="text-sm text-muted-foreground">
|
|
© {new Date().getFullYear()} {name[0]?.first}
|
|
{name[0]?.last}. All rights reserved.
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|