Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-05-04 16:38:50 +00:00

View File

@@ -2,13 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import { LayoutGrid, Mail, Rocket, Target, Users } from "lucide-react";
import { LayoutGrid, Mail, Rocket, Target } from "lucide-react";
export default function LandingPage() {
return (
@@ -28,9 +27,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "#hero" },
{ name: "Services", id: "#services" },
{ name: "Contact", id: "#contact" },
{ name: "Home", id: "hero" },
{ name: "Services", id: "services" },
{ name: "Contact", id: "contact" },
]}
brandName="ERA Global LLC"
/>
@@ -44,6 +43,20 @@ export default function LandingPage() {
imageSrc="https://img.b2bpic.net/free-photo/web-design-concept-with-drawings_23-2149071561.jpg"
buttons={[{ text: "Get Started", href: "#contact" }]}
mediaAnimation="slide-up"
testimonials={[
{
name: "Sarah Johnson",
handle: "@sarahtech",
testimonial: "ERA Global transformed our online presence. Our conversion rates doubled in just three months!",
rating: 5
},
{
name: "Mark Davis",
handle: "@markcreative",
testimonial: "Professional, efficient, and highly creative. They understand exactly what small businesses need.",
rating: 5
}
]}
/>
</div>