1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

release 0.3.4

This commit is contained in:
songjunxi
2023-11-10 14:59:47 +08:00
parent 2b456637e9
commit 602f2059fd
161 changed files with 9921 additions and 347 deletions

View File

@@ -0,0 +1,27 @@
"use client";
import Link from "next/link";
import Logo from "../shared/icons/logo";
export default function FooterPublish() {
return (
<div className=" h-32 w-full bg-white py-5 text-center ">
<Link
href="/"
className="font-display flex flex-col items-center justify-center text-xl"
>
<Logo className="h-8 w-8" />
</Link>
<div className="mt-2 flex items-center justify-center gap-1 text-sm">
<span>Powered by</span>
<Link href="/" className="font-bold">
<span className="bg-gradient-to-r from-cyan-500 via-cyan-600 to-cyan-800 bg-clip-text text-transparent ">
INKE & AI Notebook
</span>
</Link>
</div>
{/* <p>Thanks A Note</p> */}
</div>
);
}