summaryrefslogtreecommitdiff
path: root/components/layout/Footer.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-03-26 00:37:41 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-03-26 00:37:41 +0000
commite0dfb55c5457aec489fc084c4567e791b4c65eb1 (patch)
tree68543a65d88f5afb3a0202925804103daa91bc6f /components/layout/Footer.tsx
3/25 까지의 대표님 작업사항
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>
+ )
+}