Files
ballistic-builder/src/components/site/About/index.tsx

22 lines
874 B
TypeScript
Raw Normal View History

2024-12-13 12:16:29 -05:00
import constants from "@src/lib/constants";
2024-11-20 14:53:30 -05:00
export default function About() {
return (
(
<section id="about" className="bg-gray-200 py-20">
<div className="container mx-auto px-6 text-center">
2024-11-22 10:01:33 -05:00
<h3 className="text-3xl text-gray-700 font-bold mb-6 ">About Us</h3>
2024-11-20 14:53:30 -05:00
<p className="text-gray-700">
2024-12-13 12:16:29 -05:00
{constants.APP_NAME} is your go-to platform for customizing, building,
2024-11-20 14:53:30 -05:00
and exploring firearm parts. Designed for enthusiasts by
enthusiasts, we make firearm building easy and accessible.
</p>
2024-12-13 12:16:29 -05:00
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Click me test</button>
2024-11-26 00:14:49 -05:00
{/* <Button className="bg-gray-950 text-grey-100 hover:translate-y-[-2px] transition duration-300">Click me test</Button> */}
2024-11-20 14:53:30 -05:00
</div>
</section>
)
)
}