mirror of
https://github.com/Ladebeze66/devsite.git
synced 2026-05-11 16:56:26 +02:00
19 lines
527 B
JavaScript
19 lines
527 B
JavaScript
"use client"
|
|
|
|
import { useState } from "react";
|
|
|
|
export default function Footer() {
|
|
const [count, setCount] = useState(0);
|
|
|
|
function handleClick() {
|
|
setCount(count + 1);
|
|
}
|
|
|
|
return (
|
|
<footer className="min-h-[80px] w-full min-w-0 rounded-lg bg-white/50 backdrop-blur">
|
|
<div className="mx-auto flex max-w-4xl min-w-0 flex-col items-center px-4 py-6 font-headline text-sm text-gray-700">
|
|
<p>© {new Date().getFullYear()} Gras-Calvet Fernand</p>
|
|
</div>
|
|
</footer>
|
|
);
|
|
} |