feat: add attribution to Shawn Anderson

Update site to credit Shawn Anderson for contributions.

#VERCEL_SKIP

Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
v0 2025-11-20 07:27:41 +00:00
parent cee6a65696
commit bf6003b3a7
2 changed files with 4 additions and 8 deletions

View File

@ -47,14 +47,9 @@ export default function RootLayout({
<div className="container flex flex-col items-center justify-between gap-4 md:h-24 md:flex-row px-4"> <div className="container flex flex-col items-center justify-between gap-4 md:h-24 md:flex-row px-4">
<p className="text-center text-sm leading-loose text-muted-foreground md:text-left"> <p className="text-center text-sm leading-loose text-muted-foreground md:text-left">
Built by{" "} Built by{" "}
<a <Link href="/about" className="font-medium underline underline-offset-4 text-primary">
href="https://github.com/Jeff-Emmett" Shawn Anderson
target="_blank" </Link>
rel="noreferrer"
className="font-medium underline underline-offset-4"
>
Jeff Emmett
</a>
. The source code is available on{" "} . The source code is available on{" "}
<a <a
href="https://github.com/Jeff-Emmett/mytmux.life-website" href="https://github.com/Jeff-Emmett/mytmux.life-website"

View File

@ -120,6 +120,7 @@ export default function Home() {
// Generate config whenever layout changes // Generate config whenever layout changes
useEffect(() => { useEffect(() => {
let config = `# ~/.tmux.conf setup\n` let config = `# ~/.tmux.conf setup\n`
config += `# Configured by Shawn Anderson (Long Tail Financial)\n`
config += `# Generated by mytmux.life\n\n` config += `# Generated by mytmux.life\n\n`
config += `new-session -s development -n editor\n` config += `new-session -s development -n editor\n`