16 lines
686 B
TypeScript
16 lines
686 B
TypeScript
|
|
import PicWithText from "@/components/pic-with-text";
|
|
import heda_bang from "../../assets/u_mey4kjj5ww-angry-2498.gif"
|
|
|
|
|
|
export default function Page() {
|
|
const picWithTextTop = {
|
|
title: "About Us",
|
|
text: "Founed in 2025, Sculpted Arc is a web development company dedicated to helping small to medium-sized businesses establish and grow their online presence. We not only specialize in creating custom websites but also offer a wide range of services and support, including e-commerce solutions, business automation, and long-term maintenance.",
|
|
src: heda_bang.src,
|
|
reverse: false
|
|
}
|
|
return (
|
|
<PicWithText {...picWithTextTop}/>
|
|
)
|
|
} |