Delete documentation/src/refine-theme/common-footer.tsx.save
This commit is contained in:
parent
2ecf8be7b5
commit
fd053931c3
1 changed files with 0 additions and 78 deletions
|
@ -1,78 +0,0 @@
|
|||
import clsx from "clsx";
|
||||
mport React from "react";
|
||||
import { socialLinks } from "./footer-data";
|
||||
|
||||
export const CommonFooter = () => {
|
||||
return (
|
||||
<footer
|
||||
className={clsx(
|
||||
"py-4",
|
||||
"px-4",
|
||||
"dark:bg-gray-800 bg-gray-0",
|
||||
"border-t dark:border-t-gray-700 border-t-gray-300",
|
||||
)}
|
||||
>
|
||||
<div
|
||||
className={clsx(
|
||||
"mx-auto",
|
||||
"flex w-full items-center justify-between",
|
||||
"flex-col-reverse sm:flex-row gap-8",
|
||||
)}
|
||||
>
|
||||
<div
|
||||
className={clsx(
|
||||
"text-sm",
|
||||
"leading-6",
|
||||
"dark:text-gray-400 text-gray-500",
|
||||
// "mt-4 sm:mt-0",
|
||||
)}
|
||||
>
|
||||
Refine © 2023
|
||||
</div>
|
||||
|
||||
<div
|
||||
className={clsx(
|
||||
"flex flex-col sm:flex-row justify-center items-center",
|
||||
)}
|
||||
>
|
||||
<div
|
||||
className={clsx(
|
||||
"dark:text-gray-100 text-gray-800",
|
||||
"text-sm leading-6",
|
||||
"sm:mr-4",
|
||||
)}
|
||||
>
|
||||
Join us on
|
||||
</div>
|
||||
<div
|
||||
className={clsx(
|
||||
"flex gap-4",
|
||||
"dark:text-gray-400 text-gray-500",
|
||||
"mt-4 sm:mt-0",
|
||||
)}
|
||||
>
|
||||
{socialLinks.map(({ href, icon: Icon }, i) => {
|
||||
return (
|
||||
<a
|
||||
key={i}
|
||||
href={href}
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className={clsx(
|
||||
"flex items-center no-underline",
|
||||
)}
|
||||
>
|
||||
<Icon
|
||||
className={clsx(
|
||||
"w-9 h-9 sm:w-6 sm:h-6",
|
||||
)}
|
||||
/>
|
||||
</a>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
};
|
Loading…
Add table
Reference in a new issue