mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
20 lines
613 B
TypeScript
20 lines
613 B
TypeScript
import constants from "@src/lib/constants";
|
|
|
|
export default function About() {
|
|
|
|
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 ">Press</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>
|
|
)
|
|
)
|
|
} |