17 lines
697 B
TypeScript
17 lines
697 B
TypeScript
import ServicesFeature from '@/components/services-feature';
|
|
|
|
export default function ServicesPage() {
|
|
return (
|
|
<>
|
|
<h1 className="mb-4 text-5xl font-bold text-heading md:text-6xl">
|
|
Our <span className="text-transparent bg-clip-text bg-gradient-to-r from-sky-400 to-violet-800">Services</span>
|
|
</h1>
|
|
<p className="mb-12 max-w-2xl text-lg text-body lg:text-xl">
|
|
Sculpted Arc helps companies build, launch, and grow online—from first design
|
|
through long-term support. We offer a wide range of services to meet your needs, including custom web development, e-commerce solutions, content management systems, and more...
|
|
</p>
|
|
<ServicesFeature />
|
|
</>
|
|
);
|
|
}
|