2 Commits

Author SHA1 Message Date
cfaea09837 Update src/app/page.tsx 2026-05-21 18:32:55 +00:00
4dd684e59f Merge version_2 into main
Merge version_2 into main
2026-05-21 18:30:04 +00:00

View File

@@ -53,12 +53,25 @@ export default function LandingPage() {
title="Modern Websites. Built Fast. Designed to Convert." title="Modern Websites. Built Fast. Designed to Convert."
description="I design and rebuild websites for businesses that want a clean, professional online presence — fast, simple, and stress-free." description="I design and rebuild websites for businesses that want a clean, professional online presence — fast, simple, and stress-free."
buttons={[ buttons={[
{ {
text: "Get a Website", href: "#contact"}, text: "Get a Website",
{ href: "#contact",
text: "View Work", href: "#portfolio"}, onClick: () => {
const el = document.getElementById('contact');
el?.scrollIntoView({ behavior: 'smooth' });
}
},
{
text: "View Work",
href: "#portfolio", onClick: () => {
const el = document.getElementById('portfolio');
el?.scrollIntoView({ behavior: 'smooth' });
}
},
]} ]}
imageSrc="https://img.b2bpic.net/free-photo/view-futuristic-holographic-ui-with-data-graphs_23-2149520999.jpg" imageSrc="https://img.b2bpic.net/free-photo/view-futuristic-holographic-ui-with-data-graphs_23-2149520999.jpg"
imageClassName="hover:scale-105 transition-transform duration-700 ease-out"
buttonClassName="hover:scale-110 transition-transform duration-300 ease-in-out"
/> />
</div> </div>