ss_website/app/(default)/about/content.tsx

26 lines
1.3 KiB
XML

export default function AboutContent() {
return (
<section>
<div className="max-w-6xl mx-auto my-8 px-4 sm:px-6">
<div className="pb-12 md:pb-10">
<div className="max-w-4xl mx-auto">
<div className="text-lg text-slate-500">
<h2 className="h3 font-playfair-display text-slate-800 mb-4">About Us</h2>
<p className="mb-8">
Simply Synced LLC was formed in 2018 by Rob wanting to provide, quality, affordable IT consulting services to residential and commercial entities. Founded with one thing in mind, you guessed it, simplicity! With the vast amounts of technologies out there and available we feel there is always a way to get the job done. We are currently based in Levittown, PA and serve the surrounding area.
</p>
<p className="mb-8">
Consider Simply Synced LLC to be your technical swiss army knife. With skills in many different areas, we will be able to come up a solution for you! We take great pride in our work and never back down from a set of challenges.
</p>
<p className="mb-8">
Simply Synced
</p>
</div>
</div>
</div>
</div>
</section>
)
}