release 0.3.4
This commit is contained in:
27
apps/web/ui/layout/footer-publish.tsx
Normal file
27
apps/web/ui/layout/footer-publish.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user