summaryrefslogtreecommitdiff
path: root/components/layout/Footer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout/Footer.tsx')
-rw-r--r--components/layout/Footer.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/components/layout/Footer.tsx b/components/layout/Footer.tsx
new file mode 100644
index 00000000..f7d6906d
--- /dev/null
+++ b/components/layout/Footer.tsx
@@ -0,0 +1,16 @@
+import { siteConfig } from "@/config/site"
+
+export function SiteFooter() {
+ return (
+ <footer className="border-grid border-t py-6 md:px-8 md:py-0">
+ <div className="container-wrapper">
+ <div className="container py-4">
+ <div className="text-balance text-center text-sm leading-loose text-muted-foreground md:text-left">
+ Built by{" "}
+
+ </div>
+ </div>
+ </div>
+ </footer>
+ )
+}