summaryrefslogtreecommitdiff
path: root/components/layout/Footer.tsx
blob: f7d6906dfa94ed92fbaeb10a15c69711e76ef8dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
  )
}