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

20 lines
584 B
TypeScript
Raw Normal View History

2024-11-20 14:53:30 -05:00
import Link from "next/link";
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 font-bold mb-6">About Us</h3>
<p className="text-gray-700">
2024-11-21 15:46:29 -05:00
Ballistic Builder 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>
</div>
</section>
)
)
}