add servies page with content and a typing words feature to contact page

This commit is contained in:
2026-05-30 08:51:05 +01:00
parent 87f8d2b04e
commit f67093f34e
12 changed files with 406 additions and 19 deletions

16
app/services/page.tsx Normal file
View File

@@ -0,0 +1,16 @@
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 onlinefrom first design
through long-term support.
</p>
<ServicesFeature />
</>
);
}