Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-06-03 15:18:56 +00:00

View File

@@ -6,7 +6,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import HeroSignup from '@/components/sections/hero/HeroSignup';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -14,7 +14,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Award, Code, Edit, Lightbulb, Rocket, Sparkles } from "lucide-react";
import { Sparkles } from "lucide-react";
export default function LandingPage() {
return (
@@ -58,63 +58,16 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitTestimonial
<HeroSignup
useInvertedBackground={false}
background={{
variant: "animated-grid"}}
title="EPIPHANY: Where Vision Meets Reality."
description="Unlocking the future of digital experience. We craft Awwwards-winning websites that redefine interaction and inspire wonder."
testimonials={[
{
name: "Alex K.", handle: "@TechVisionary", testimonial: "EPIPHANY transformed our platform. The creativity and technical execution were simply unparalleled. Truly Awwwards-worthy!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-businessman-black-wall_176420-3460.jpg", imageAlt: "Alex K., CEO of TechVisionary"},
{
name: "Samantha L.", handle: "@InnovateLab", testimonial: "The level of immersion and storytelling they achieved is mind-blowing. It feels less like a website, more like a digital universe.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/male-factory-consultant-observes-production-systems-pc-solar-plant_482257-126030.jpg", imageAlt: "Samantha L., CTO of InnovateLab"},
{
name: "Marcus J.", handle: "@PixelForge", testimonial: "Our clients are constantly asking 'How was this built?'. EPIPHANY delivered an unforgettable experience that elevated our brand.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/male-executive-sitting-with-clipboard-office_482257-124725.jpg", imageAlt: "Marcus J., Marketing Director at PixelForge"},
{
name: "Chloe B.", handle: "@DigitalCanvas", testimonial: "From initial concept to flawless execution, their team brought a fresh perspective. Our site is now a benchmark in our industry.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-reading-annual-reports_482257-75598.jpg", imageAlt: "Chloe B., Product Manager at DigitalCanvas"},
{
name: "David M.", handle: "@FutureScape", testimonial: "The attention to detail, the dynamic interactions—every element is premium. It's truly a masterpiece of digital craftsmanship.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/female-web-designer-with-papers-notes-office_23-2149749880.jpg", imageAlt: "David M., Lead Designer at FutureScape"},
]}
testimonialRotationInterval={5000}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/blue-neon-light-dark-backdrop_23-2147881452.jpg", alt: "Avatar of satisfied client 1"},
{
src: "http://img.b2bpic.net/free-photo/ai-generated-concept-human_23-2150688591.jpg", alt: "Avatar of satisfied client 2"},
{
src: "http://img.b2bpic.net/free-photo/fantasy-scene-with-futuristic-human-character_23-2151254449.jpg", alt: "Avatar of satisfied client 3"},
{
src: "http://img.b2bpic.net/free-photo/headshot-positive-unshaven-young-man-smiles-broadly-wears-round-optical-glasses-yellow-headgear_273609-27036.jpg", alt: "Avatar of satisfied client 4"},
{
src: "http://img.b2bpic.net/free-photo/man-portrait-with-blue-lights-visual-effects_23-2149419463.jpg", alt: "Avatar of satisfied client 5"},
]}
avatarText="Trusted by visionary brands"
imageSrc="http://img.b2bpic.net/free-photo/man-with-headphones-sits-desk-front-computer_1258-296305.jpg"
imageAlt="Dark-skinned digital creator at a futuristic workstation with floating UI"
mediaAnimation="slide-up"
marqueeItems={[
{
type: "text-icon", text: "Awwwards Nominee", icon: Award,
},
{
type: "text-icon", text: "Innovation Leader", icon: Lightbulb,
},
{
type: "text-icon", text: "Seamless UX", icon: Edit,
},
{
type: "text-icon", text: "Pixel-Perfect Code", icon: Code,
},
{
type: "text-icon", text: "Future-Ready Design", icon: Rocket,
},
]}
tag="Elevate Your Brand"
inputPlaceholder="Enter your email"
buttonText="Get Started"
onSubmit={(email) => console.log('Email submitted:', email)}
/>
</div>
@@ -331,4 +284,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}