footer fixed, added stub content

This commit is contained in:
2024-12-16 12:12:04 -05:00
parent 1d53602129
commit bb570123e6
12 changed files with 143 additions and 17 deletions

View File

@@ -0,0 +1,21 @@
import constants from "@src/lib/constants";
export default function Disclosure() {
return (
(
<section id="about" className="bg-gray-200 py-20">
<div className="container mx-auto px-6 text-center">
<h3 className="text-3xl text-gray-700 font-bold mb-6 ">Disclosure</h3>
<p className="text-gray-700">
{constants.APP_NAME} is your go-to platform for customizing, building,
and exploring firearm parts. Designed for enthusiasts by
enthusiasts, we make firearm building easy and accessible.
</p>
</div>
</section>
)
)
}