mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-28 18:36:23 +02:00
Initial commit
This commit is contained in:
commit
55332d1ddb
168 changed files with 18456 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
/* Vars here are coming from /DashboardLayout.module.css */
|
||||
.dashboardFooter {
|
||||
@apply mt-[var(--small-spacing)] min-h-[var(--footer-height)];
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
import styles from "./Footer.module.css";
|
||||
|
||||
const Footer = () => {
|
||||
return (
|
||||
<footer className={`w-full text-sm ${styles.dashboardFooter}`}>
|
||||
<div>
|
||||
<div className="flex flex-col gap-4 justify-end">
|
||||
<div className="text-xs text-muted-foreground">
|
||||
Copyright© Next-Fast-Turbo. All rights reserved.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
};
|
||||
|
||||
export default Footer;
|
||||
|
|
@ -0,0 +1 @@
|
|||
export { default } from "./Footer";
|
||||
Loading…
Add table
Add a link
Reference in a new issue