Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5e735f3a7f | |||
| f45b06bdd8 | |||
| e7b13ba7b0 | |||
| 1172524390 | |||
| eab49f889d | |||
| e79b9ed546 | |||
| 4f0939c3fe | |||
| 19977c54d1 |
@@ -3,8 +3,16 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
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() {
|
export default function LandingPage() {
|
||||||
|
const handleContact = () => {
|
||||||
|
window.location.href = "mailto:designercopy5@gmail.com";
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-bubble"
|
defaultButtonVariant="hover-bubble"
|
||||||
@@ -12,7 +20,7 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="circleGradient"
|
background="noise"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
@@ -21,11 +29,78 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[]}
|
navItems={[
|
||||||
brandName="AgencyCore"
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "Contact", id: "contact" }
|
||||||
|
]}
|
||||||
|
brandName="Copy Designers"
|
||||||
|
button={{ text: "Get Started", onClick: handleContact }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="hero" data-section="hero">
|
||||||
|
<HeroSplitDualMedia
|
||||||
|
title="Revolutionizing Web Design with AI"
|
||||||
|
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 Modern Digital Brands"
|
||||||
|
buttons={[{ text: "Get Started", onClick: handleContact }]}
|
||||||
|
background={{ variant: 'glowing-orb' }}
|
||||||
|
mediaItems={[
|
||||||
|
{ 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>
|
||||||
|
|
||||||
|
<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 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 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: "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"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplitForm
|
||||||
|
title="Let's Build Your Future"
|
||||||
|
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" },
|
||||||
|
{ name: "email", type: "email", placeholder: "Your Email" }
|
||||||
|
]}
|
||||||
|
buttonText="Submit Inquiry"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBase
|
||||||
|
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" }, { label: "Call Us", href: "tel:0682703840" }] }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #0a0a0a;
|
||||||
--card: #ffffff;
|
--card: #1a1a1a;
|
||||||
--foreground: #25190c;
|
--foreground: #ffffffe6;
|
||||||
--primary-cta: #ff6207;
|
--primary-cta: #e6e6e6;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #25190c;
|
--secondary-cta-text: #25190c;
|
||||||
--accent: #ffce93;
|
--accent: #737373;
|
||||||
--background-accent: #e8cfa8;
|
--background-accent: #737373;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user