|
|
|
|
@@ -3,8 +3,19 @@
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
|
|
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
|
|
|
|
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
|
|
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
|
|
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
|
|
|
|
|
|
|
|
|
export default function LandingPage() {
|
|
|
|
|
const handleEmailCall = () => {
|
|
|
|
|
window.location.href = "mailto:designercopy5@gmail.com";
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
window.location.href = "tel:0682703840";
|
|
|
|
|
}, 500);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="hover-bubble"
|
|
|
|
|
@@ -12,7 +23,7 @@ export default function LandingPage() {
|
|
|
|
|
borderRadius="pill"
|
|
|
|
|
contentWidth="medium"
|
|
|
|
|
sizing="medium"
|
|
|
|
|
background="circleGradient"
|
|
|
|
|
background="noise"
|
|
|
|
|
cardStyle="glass-elevated"
|
|
|
|
|
primaryButtonStyle="gradient"
|
|
|
|
|
secondaryButtonStyle="glass"
|
|
|
|
|
@@ -21,8 +32,75 @@ export default function LandingPage() {
|
|
|
|
|
<ReactLenis root>
|
|
|
|
|
<div id="nav" data-section="nav">
|
|
|
|
|
<NavbarStyleApple
|
|
|
|
|
navItems={[]}
|
|
|
|
|
navItems={[
|
|
|
|
|
{ name: "Services", id: "services" },
|
|
|
|
|
{ name: "Contact", id: "contact" }
|
|
|
|
|
]}
|
|
|
|
|
brandName="AgencyCore"
|
|
|
|
|
button={{ text: "Get Started", onClick: handleEmailCall }}
|
|
|
|
|
/>
|
|
|
|
|
</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"
|
|
|
|
|
rating={5}
|
|
|
|
|
ratingText="Trusted by 50+ Global Brands"
|
|
|
|
|
buttons={[{ text: "Get Started", onClick: handleEmailCall }]}
|
|
|
|
|
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" }
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="services" data-section="services">
|
|
|
|
|
<FeatureCardTwentySeven
|
|
|
|
|
title="Our Core Services"
|
|
|
|
|
description="Comprehensive web solutions tailored for the modern era."
|
|
|
|
|
animationType="slide-up"
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
features={[
|
|
|
|
|
{
|
|
|
|
|
id: "1", title: "Website Design", descriptions: ["Custom, high-conversion designs built from scratch."],
|
|
|
|
|
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."],
|
|
|
|
|
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."],
|
|
|
|
|
imageSrc: "https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=400"
|
|
|
|
|
}
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
|
<ContactSplitForm
|
|
|
|
|
title="Let's Build Your Future"
|
|
|
|
|
description="Ready to transform your digital strategy? Get in touch today."
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
inputs={[
|
|
|
|
|
{ name: "name", type: "text", placeholder: "Your Name" },
|
|
|
|
|
{ name: "email", type: "email", placeholder: "Your Email" }
|
|
|
|
|
]}
|
|
|
|
|
buttonText="Submit Inquiry"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
<FooterBase
|
|
|
|
|
logoText="AgencyCore"
|
|
|
|
|
columns={[
|
|
|
|
|
{ title: "Services", items: [{ label: "Web Design", href: "#services" }, { label: "Upgrades", href: "#services" }] },
|
|
|
|
|
{ title: "Contact", items: [{ label: "Email Us", href: "mailto:designercopy5@gmail.com" }] }
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</ReactLenis>
|
|
|
|
|
|