add template

This commit is contained in:
2024-08-26 14:14:34 +02:00
parent 4e4541f3e5
commit ad132b5bdf
56 changed files with 6854 additions and 1 deletions

16
src/components/Footer.jsx Normal file
View File

@@ -0,0 +1,16 @@
import { Container } from '@/components/Container'
import { Logo } from '@/components/Logo'
export function Footer() {
return (
<footer className="flex-none py-16">
<Container className="flex flex-col items-center justify-between md:flex-row">
<Logo className="h-12 w-auto text-slate-900" />
<p className="mt-6 text-base text-slate-500 md:mt-0">
Copyright &copy; {new Date().getFullYear()} DeceptiConf, LLC. All
rights reserved.
</p>
</Container>
</footer>
)
}