added favicon and populated template text with real text

This commit is contained in:
2026-05-31 21:50:04 +01:00
parent f67093f34e
commit cfebb4cee5
12 changed files with 103 additions and 50 deletions

View File

@@ -4,7 +4,13 @@ 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 src={heda_bang.src} text="Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?" reverse={false} title="About us"/>
<PicWithText {...picWithTextTop}/>
)
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -3,6 +3,7 @@ import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import SiteHeader from '../components/site-header';
import Footer from "@/components/footer";
import favicon from "../assets/scws-logo-no-bg.png"
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -34,6 +35,10 @@ export default function RootLayout({
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<head>
<link rel="icon" href={favicon.src} />
</head>
<body className="min-h-full flex flex-col dark:bg-black">
<SiteHeader />
<div className="flex min-h-screen flex-col bg-zinc-50 font-sans dark:bg-black">

View File

@@ -6,48 +6,54 @@ import PicWithText from "@/components/pic-with-text";
import pictureOne from "../assets/hero-picture-1.png"
import pictureTwo from "../assets/hero-picture-2.png"
import pictureThree from "../assets/hero-picture-3.png"
import pictureFour from "../assets/BrickslipsWebPage.png"
import heroPicture from "../assets/mxj-files-planet-27066.gif"
import logo from "../assets/milaoktasafitri-astronomy-9746537_1920.png"
import { title } from "process";
import { reverse } from "dns";
export default function Home() {
const contentCards = [
{
heading: "Michala Art Shop",
heading: "Michala's Art Gallery",
card_text: "This case study was for a small business selling artwork",
button_text: "click me",
button_text: "Read More",
src: pictureOne.src
},
{
heading: "Athlito",
card_text: "This was an Ecommerce padel shop",
button_text: "click me",
button_text: "Read More",
src: pictureTwo.src
},
{
heading: "Birchover Reclamation",
card_text: "This case study was for a stone yard company",
button_text: "click me",
button_text: "Read More",
src: pictureThree.src
},
{
heading: "Michala Art Shop",
card_text: "This case study was for a small business selling artwork",
button_text: "click me",
src: pictureOne.src
heading: "Brickslips Direct LTD",
card_text: "This case study was for a small business selling brickslips",
button_text: "Read More",
src: pictureFour.src
}
]
const picWithText = {
title: "Building a better web, one pixel at a time",
text: "At Sculpted Arc, we are passionate about crafting exceptional web solutions that empower businesses to thrive in the digital landscape. With a team of skilled developers and designers, we specialize in creating stunning websites that not only captivate audiences but also drive results. Whether you're a startup looking to establish your online presence or an established company seeking to revamp your website, we have the expertise to bring your vision to life. Our commitment to quality, innovation, and customer satisfaction sets us apart as a trusted partner in your web development journey.",
text: "Over the last year, we've had the privilege of working with a diverse range of clients, from local artisans to growing enterprises. Each project has been an opportunity to learn, innovate, and create something truly unique. Our commitment to quality and customer satisfaction has earned us a reputation for excellence in the web development industry.",
src: logo.src,
reverse: false
}
const HeroSectionProps = {
description: "Sculpted Arc Web Solutions is a web development company. Our passion ranges from creating stunning websites to developing innovative digital solutions. We would love to hear more about your project",
buttonText: "Tell us about your project",
imageSrc: heroPicture.src
}
return (
<>
<HeroSection />
<HeroSection {...HeroSectionProps} />
<PicWithText {...picWithText} />
<div className="w-full m-auto">

View File

@@ -8,7 +8,7 @@ export default function ServicesPage() {
</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.
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 />
</>