Initial commit

This commit is contained in:
Rohan Verma 2024-07-30 16:00:11 -07:00 committed by GitHub
commit 55332d1ddb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
168 changed files with 18456 additions and 0 deletions

View file

@ -0,0 +1,4 @@
/* Vars here are coming from /DashboardLayout.module.css */
.dashboardFooter {
@apply mt-[var(--small-spacing)] min-h-[var(--footer-height)];
}

View file

@ -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;

View file

@ -0,0 +1 @@
export { default } from "./Footer";