4 Commits

Author SHA1 Message Date
5e735f3a7f Merge version_4 into main
Merge version_4 into main
2026-05-17 12:55:30 +00:00
f45b06bdd8 Update src/app/page.tsx 2026-05-17 12:55:27 +00:00
e7b13ba7b0 Merge version_3 into main
Merge version_3 into main
2026-05-17 12:53:01 +00:00
eab49f889d Merge version_3 into main
Merge version_3 into main
2026-05-17 12:52:36 +00:00

View File

@@ -9,11 +9,8 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function LandingPage() {
const handleEmailCall = () => {
const handleContact = () => {
window.location.href = "mailto:designercopy5@gmail.com";
setTimeout(() => {
window.location.href = "tel:0682703840";
}, 500);
};
return (
@@ -36,23 +33,23 @@ export default function LandingPage() {
{ name: "Services", id: "services" },
{ name: "Contact", id: "contact" }
]}
brandName="AgencyCore"
button={{ text: "Get Started", onClick: handleEmailCall }}
brandName="Copy Designers"
button={{ text: "Get Started", onClick: handleContact }}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitDualMedia
title="Revolutionizing Web Design with AI"
description="We build, upgrade, and modernize your digital presence with cutting-edge AI-powered web solutions."
tag="Innovative Digital Solutions"
description="Copy Designers builds, upgrades, and modernizes your digital presence with cutting-edge AI-powered solutions."
tag="Innovative AI-Driven Digital Solutions"
rating={5}
ratingText="Trusted by 50+ Global Brands"
buttons={[{ text: "Get Started", onClick: handleEmailCall }]}
ratingText="Trusted by Modern Digital Brands"
buttons={[{ text: "Get Started", onClick: handleContact }]}
background={{ variant: 'glowing-orb' }}
mediaItems={[
{ imageSrc: "https://images.unsplash.com/photo-1677442136019-21780ecad995?q=80&w=800", imageAlt: "AI Web Design 1" },
{ imageSrc: "https://images.unsplash.com/photo-1675557010259-f6b86be2e402?q=80&w=800", imageAlt: "AI Web Design 2" }
{ imageSrc: "https://images.unsplash.com/photo-1696258686454-60082b2c3c52?q=80&w=800", imageAlt: "AI Web Design Aesthetic" },
{ imageSrc: "https://images.unsplash.com/photo-1677442136019-21780ecad995?q=80&w=800", imageAlt: "Modern AI Interface" }
]}
/>
</div>
@@ -66,15 +63,15 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
id: "1", title: "Website Design", descriptions: ["Custom, high-conversion designs built from scratch."],
id: "1", title: "Website Designing", descriptions: ["Custom, high-conversion designs built from scratch with AI precision."],
imageSrc: "https://images.unsplash.com/photo-1547658719-da2b51169165?q=80&w=400"
},
{
id: "2", title: "Landing Page Creation", descriptions: ["High-impact landing pages optimized for performance and lead generation."],
id: "2", title: "Landing Pages", descriptions: ["High-impact landing pages optimized for performance and lead generation."],
imageSrc: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=400"
},
{
id: "3", title: "Website Upgrades", descriptions: ["Modernizing legacy platforms with the latest AI tools and UI/UX standards."],
id: "3", title: "Upgrading Websites", descriptions: ["Modernizing legacy platforms with the latest AI tools and UI/UX standards."],
imageSrc: "https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=400"
}
]}
@@ -84,7 +81,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Let's Build Your Future"
description="Ready to transform your digital strategy? Get in touch today."
description="Ready to transform your digital strategy? Contact us at 0682703840 or email us at designercopy5@gmail.com."
useInvertedBackground={false}
inputs={[
{ name: "name", type: "text", placeholder: "Your Name" },
@@ -96,14 +93,14 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
logoText="AgencyCore"
logoText="Copy Designers"
columns={[
{ title: "Services", items: [{ label: "Web Design", href: "#services" }, { label: "Upgrades", href: "#services" }] },
{ title: "Contact", items: [{ label: "Email Us", href: "mailto:designercopy5@gmail.com" }] }
{ title: "Contact", items: [{ label: "Email Us", href: "mailto:designercopy5@gmail.com" }, { label: "Call Us", href: "tel:0682703840" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}