10 Commits

Author SHA1 Message Date
616f939c35 Merge version_3 into main
Merge version_3 into main
2026-05-22 04:28:07 +00:00
6319390c1d Update src/app/page.tsx 2026-05-22 04:28:04 +00:00
e6b2103ee0 Merge version_3 into main
Merge version_3 into main
2026-05-22 04:27:43 +00:00
cad30ef411 Update src/app/page.tsx 2026-05-22 04:27:37 +00:00
ef40d0c595 Merge version_3 into main
Merge version_3 into main
2026-05-22 04:27:10 +00:00
863d957d94 Update src/app/page.tsx 2026-05-22 04:27:07 +00:00
43638ea65f Switch to version 1: modified src/app/page.tsx 2026-05-22 04:25:40 +00:00
27f49b4744 Merge version_2 into main
Merge version_2 into main
2026-05-22 04:23:06 +00:00
cf667ff729 Update src/app/page.tsx 2026-05-22 04:23:03 +00:00
bd91238a76 Merge version_1 into main
Merge version_1 into main
2026-05-22 04:20:10 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
@@ -73,7 +73,6 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/empty-art-studio-with-nobody-it-is-ready-painting-lesson-art-studio-modern-atelier-with-vase-chair-using-imagination-professional-sketch-tools-table-concept-creativity_482257-30104.jpg"
imageAlt="Our creative workspace"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
@@ -85,7 +84,7 @@ export default function LandingPage() {
features={[
{ title: "Conversion-Driven Landing Pages", description: "High-impact layouts built to turn visitors into loyal customers through rigorous design thinking.", imageSrc: "http://img.b2bpic.net/free-vector/isometric-landing-page_52683-7290.jpg", imageAlt: "Landing page design icon" },
{ title: "Intuitive User Journeys", description: "Seamless, logical workflows that reduce friction and maximize user delight at every interaction point.", imageSrc: "http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150104513.jpg", imageAlt: "UX workflow icon" },
{ title: "Scalable Design Systems", description: "Structured design languages that grow with your company, maintaining brand consistency across all platforms.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk_23-2150440917.jpg", imageAlt: "Design system icon" }
{ title: "Scalable Design Systems", description: "Structured design languages that grow with your company, maintaining brand consistency across all platforms.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk_23-2150440917.jpg?_wi=1", imageAlt: "Design system icon" }
]}
title="Comprehensive Design Capabilities"
description="We offer full-cycle UX/UI design solutions to elevate your digital presence."
@@ -160,22 +159,27 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
text="Ready to transform your digital experience? Let's discuss your project goals."
<ContactCTA
tag="Get in touch"
title="Ready to transform your digital experience?"
description="Let's discuss your project goals and build something amazing together."
buttons={[{ text: "Contact Us", href: "mailto:hello@designstudio.com" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterMedia
logoText="DesignStudio"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
columns={[
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Portfolio", href: "#work" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
]}
imageSrc="http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk_23-2150440917.jpg?_wi=2"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}