summaryrefslogtreecommitdiff
path: root/components/layout/Footer.tsx
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-03-25 15:55:45 +0900
committerjoonhoekim <26rote@gmail.com>2025-03-25 15:55:45 +0900
commit1a2241c40e10193c5ff7008a7b7b36cc1d855d96 (patch)
tree8a5587f10ca55b162d7e3254cb088b323a34c41b /components/layout/Footer.tsx
initial commit
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>
+ )
+}