Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 98a8f4c775 | |||
| 78bfb8e6ec | |||
| 8354f6875b | |||
| e8ee8c43b0 | |||
| 49d2564c51 | |||
| 7705d72102 | |||
| 2748ece517 | |||
| f74352d064 | |||
| 068fd3d8b1 | |||
| 8be03ee62e | |||
| a7a72e9d7b | |||
| 4865db7bda | |||
| a22811e1a7 | |||
| 83591bd895 | |||
| 4ab28d4d17 | |||
| a11587c9dc | |||
| a43e9b9324 | |||
| ecdd226c86 | |||
| 62619b1bb7 | |||
| ce4c5c0653 | |||
| 4335ff7aef | |||
| ad2b603108 |
83
src/app/about/page.tsx
Normal file
83
src/app/about/page.tsx
Normal file
@@ -0,0 +1,83 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import TextAbout from "@/components/sections/about/TextAbout";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Echo"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Our Services", id: "/#ai-services-overview" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Why Us", id: "/#why-choose-us" },
|
||||
{ name: "Team", id: "/#team" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "/#contact" }}
|
||||
/>
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
tag="About Us"
|
||||
tagIcon={Sparkles}
|
||||
title="Echo: Your Partner in Digital Transformation"
|
||||
buttons={[{ text: "Our Services", href: "/#ai-services-overview" }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterBase
|
||||
logoText="Echo"
|
||||
copyrightText="© 2026 | Echo"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Why Us", href: "/#why-choose-us" },
|
||||
{ label: "Team", href: "/#team" },
|
||||
{ label: "Case Studies", href: "/case-studies" },
|
||||
{ label: "Contact", href: "/#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Services", items: [
|
||||
{ label: "Web Development", href: "/#ai-services-overview" },
|
||||
{ label: "App Development", href: "/#ai-services-overview" },
|
||||
{ label: "AI Automations", href: "/#ai-services-overview" },
|
||||
{ label: "Marketing & Growth", href: "/#ai-services-overview" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
100
src/app/blog/page.tsx
Normal file
100
src/app/blog/page.tsx
Normal file
@@ -0,0 +1,100 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import BlogCardThree from "@/components/sections/blog/BlogCardThree";
|
||||
import { Sparkles, CalendarDays, User } from "lucide-react";
|
||||
|
||||
export default function BlogPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Echo"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Services", id: "ai-services-overview" },
|
||||
{ name: "Case Studies", id: "case-studies" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Why Us", id: "why-choose-us" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Documentation", id: "/resources/documentation" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
title="Our Latest Insights"
|
||||
description="Stay updated with our latest articles on digital innovation, web development, AI, and business growth."
|
||||
tag="Insights"
|
||||
tagIcon={Sparkles}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
blogs={[
|
||||
{
|
||||
id: "1", category: "Web Development", title: "The Future of Responsive Design", excerpt: "Exploring new trends and techniques to ensure your website looks perfect on every device.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp?_wi=1", imageAlt: "Future of Responsive Design", authorName: "Jane Doe", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp?_wi=1", date: "2023-10-26"
|
||||
},
|
||||
{
|
||||
id: "2", category: "AI & Automation", title: "How AI Is Revolutionizing Business Operations", excerpt: "Discover how artificial intelligence can streamline your workflows and boost efficiency.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=2", imageAlt: "AI Revolutionizing Business Operations", authorName: "John Smith", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp?_wi=2", date: "2023-10-20"
|
||||
},
|
||||
{
|
||||
id: "3", category: "Marketing Strategy", title: "Data-Driven Marketing: Unlocking Growth Potential", excerpt: "Leverage data analytics to create effective marketing strategies and achieve measurable ROI.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Data-Driven Marketing", authorName: "Alice Johnson", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp?_wi=1", date: "2023-10-15"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBase
|
||||
logoText="Echo"
|
||||
copyrightText="© 2026 | Echo"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Why Us", href: "#why-choose-us" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Case Studies", href: "#case-studies" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Documentation", href: "/resources/documentation" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Our Services", items: [
|
||||
{ label: "Web Development", href: "#ai-services-overview" },
|
||||
{ label: "App Development", href: "#ai-services-overview" },
|
||||
{ label: "AI Automations", href: "#ai-services-overview" },
|
||||
{ label: "Marketing & Growth", href: "#ai-services-overview" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
102
src/app/case-studies/page.tsx
Normal file
102
src/app/case-studies/page.tsx
Normal file
@@ -0,0 +1,102 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { ArrowUpRight } from "lucide-react";
|
||||
|
||||
export default function CaseStudiesListingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Echo"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Our Services", id: "/#ai-services-overview" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Why Us", id: "/#why-choose-us" },
|
||||
{ name: "Team", id: "/#team" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "/#contact" }}
|
||||
/>
|
||||
<div id="case-studies-listing" data-section="case-studies-listing">
|
||||
<FeatureCardTwentySix
|
||||
title="All Our Success Stories"
|
||||
description="Dive deeper into how our digital solutions have transformed businesses and delivered measurable results for our clients."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Back to Home", href: "/" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Enhanced E-commerce Platform", description: "Optimized online store performance, leading to a 30% increase in sales for a retail client.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "E-commerce Platform Optimization", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"/case-studies/ecommerce"},
|
||||
{
|
||||
title: "Automated Customer Engagement", description: "Implementing advanced CRM integrations improving customer response times and satisfaction by 40%.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Automated Customer Engagement System", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"/case-studies/customer-engagement"},
|
||||
{
|
||||
title: "Data-Driven Marketing Strategy", description: "Providing actionable insights for a service brand, leading to 15% revenue growth and increased lead generation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Data-Driven Marketing Insights", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"/case-studies/marketing-strategy"},
|
||||
{
|
||||
title: "Streamlined Operational Workflows", description: "Automated process improvements reducing operational costs by 25% for a logistics company.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Operational Workflow Streamlining", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"/case-studies/operational-workflows"},
|
||||
{
|
||||
title: "Custom Mobile Application Launch", description: "Developed a new mobile app improving user engagement and retention for a lifestyle brand.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Custom Mobile Application", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"/case-studies/mobile-app-launch"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterBase
|
||||
logoText="Echo"
|
||||
copyrightText="© 2026 | Echo"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Why Us", href: "/#why-choose-us" },
|
||||
{ label: "Team", href: "/#team" },
|
||||
{ label: "Case Studies", href: "/case-studies" },
|
||||
{ label: "Contact", href: "/#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Services", items: [
|
||||
{ label: "Web Development", href: "/#ai-services-overview" },
|
||||
{ label: "App Development", href: "/#ai-services-overview" },
|
||||
{ label: "AI Automations", href: "/#ai-services-overview" },
|
||||
{ label: "Marketing & Growth", href: "/#ai-services-overview" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
539
src/app/page.tsx
539
src/app/page.tsx
@@ -12,8 +12,8 @@ import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
||||
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
||||
import { Sparkles, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users, Lightbulb, BarChart, Code, Database, Gauge, FlaskConical, Rocket, Star, Workflow, Layers, Cog, Microscope, Globe } from "lucide-react";
|
||||
|
||||
export default function WebAgency2Page() {
|
||||
return (
|
||||
@@ -31,316 +31,291 @@ export default function WebAgency2Page() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
brandName="Echo"
|
||||
navItems={[
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Services", id: "ai-services-overview" },
|
||||
{ name: "Case Studies", id: "case-studies" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Why Us", id: "why-choose-us" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Documentation", id: "/resources/documentation" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
<HeroSplitDoubleCarousel
|
||||
title="We Build Digital Experiences"
|
||||
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
|
||||
tag="Award-Winning Agency"
|
||||
title="We Empower Growth with Digital Innovation"
|
||||
description="Echo is a growth-focused digital agency that combines web development, app development, AI receptionists and business automation to help service businesses attract more customers and operate more efficiently."
|
||||
tag="Growth-Focused Digital Agency"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
buttons={[
|
||||
{ text: "Start Project", href: "#contact" },
|
||||
{ text: "View Work", href: "#work" },
|
||||
{ text: "Our Services", href: "#ai-services-overview" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselPosition="right"
|
||||
leftCarouselItems={[
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "UI UX Design - Daily Life app" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "UI UX Design - SaaS platform" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "UI UX Design - Luminé skincare" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-7.webp", imageAlt: "UI UX Design - Online courses" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "UI UX Design - Business coach" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=1", imageAlt: "Modern UI Design" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp?_wi=1", imageAlt: "SaaS platform dashboard" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp?_wi=1", imageAlt: "Data analytics interface" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-7.webp?_wi=1", imageAlt: "Online course platform" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "Business growth strategies" }
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "UI UX Design - Luxuria travel" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-5.webp", imageAlt: "UI UX Design - Dental practice" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", imageAlt: "UI UX Design - AI product builder" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp", imageAlt: "UI UX Design - AI automation" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=1", imageAlt: "Travel application interface" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-5.webp?_wi=1", imageAlt: "Practice management system" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", imageAlt: "Product builder interface" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp?_wi=1", imageAlt: "Automation dashboard" }
|
||||
]}
|
||||
carouselItemClassName="!aspect-[4/5]"
|
||||
/>
|
||||
<FeatureBento
|
||||
title="Our Services"
|
||||
description="We offer a full suite of digital services to help your brand stand out online."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttons={[{ text: "All Services", href: "#services" }]}
|
||||
buttonAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "SEO",
|
||||
description: "We optimize your website to rank higher on search engines and drive organic traffic.",
|
||||
bentoComponent: "marquee",
|
||||
centerIcon: Search,
|
||||
variant: "text",
|
||||
texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"],
|
||||
},
|
||||
{
|
||||
title: "Web Development",
|
||||
description: "Custom-built websites that are fast, responsive, and designed to convert.",
|
||||
bentoComponent: "media-stack",
|
||||
<div id="ai-services-overview" data-section="ai-services-overview">
|
||||
<FeatureBento
|
||||
title="Our Core Services"
|
||||
description="Driving innovation and efficiency with bespoke digital solutions for your business."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttons={[{ text: "Learn More", href: "#case-studies" }]}
|
||||
buttonAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Web Development", description: "Crafting stunning, high-performance websites tailored to your business needs, from engaging front-ends to robust back-ends.", bentoComponent: "marquee", centerIcon: Monitor,
|
||||
variant: "text", texts: ["Responsive Design", "Custom CMS", "E-commerce", "Performance", "SEO Optimization"]
|
||||
},
|
||||
{
|
||||
title: "App Development", description: "Designing and building intuitive mobile and web applications that provide seamless user experiences and drive engagement.", bentoComponent: "media-stack", items: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "App development UI" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp?_wi=1", imageAlt: "Mobile app interface" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Custom software solution" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "AI Automations", description: "Leveraging AI to streamline operations, automate repetitive tasks, and enhance efficiency across your business processes.", bentoComponent: "media-stack", items: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=2", imageAlt: "Automation concept" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=2", imageAlt: "Workflow automation" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp?_wi=2", imageAlt: "System optimization" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Marketing & Growth Systems", description: "Developing data-driven marketing strategies and implementing automated growth systems to attract, convert, and retain more customers.", bentoComponent: "animated-bar-chart"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="case-studies" data-section="case-studies">
|
||||
<FeatureCardTwentySix
|
||||
title="Our Success Stories"
|
||||
description="Explore how our digital solutions have transformed businesses and delivered measurable results."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View All Case Studies", href: "#case-studies" }] }
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Enhanced E-commerce Platform", description: "Optimized online store performance, leading to a 30% increase in sales for a retail client.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "E-commerce Platform Optimization", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"#"},
|
||||
{
|
||||
title: "Automated Customer Engagement", description: "Implementing advanced CRM integrations improving customer response times and satisfaction by 40%.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Automated Customer Engagement System", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"#"},
|
||||
{
|
||||
title: "Data-Driven Marketing Strategy", description: "Providing actionable insights for a service brand, leading to 15% revenue growth and increased lead generation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Data-Driven Marketing Insights", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"#"},
|
||||
{
|
||||
title: "Streamlined Operational Workflows", description: "Automated process improvements reducing operational costs by 25% for a logistics company.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Operational Workflow Streamlining", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"#"},
|
||||
{
|
||||
title: "Custom Mobile Application Launch", description: "Developed a new mobile app improving user engagement and retention for a lifestyle brand.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Custom Mobile Application", buttonIcon: ArrowUpRight,
|
||||
buttonHref:"#"}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="our-promise" data-section="our-promise">
|
||||
<FeatureBento
|
||||
title="Our Promise"
|
||||
description="We deliver intelligent solutions that speak for themselves."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "All Devices Optimization", description: "Pixel-perfect interfaces that look stunning on every screen size and device.", bentoComponent: "phone", statusIcon: Lock,
|
||||
alertIcon: Monitor,
|
||||
alertTitle: "Responsive check", alertMessage: "All breakpoints passed", apps: [
|
||||
{ name: "Phone", icon: Phone },
|
||||
{ name: "SMS", icon: MessageCircle },
|
||||
{ name: "Books", icon: BookOpen },
|
||||
{ name: "TV", icon: Tv },
|
||||
{ name: "Camera", icon: Camera },
|
||||
{ name: "Music", icon: Music },
|
||||
{ name: "Settings", icon: Settings },
|
||||
{ name: "Chat", icon: MessageCircle }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Secure Hosting", description: "Enterprise-grade security and 99.9% uptime for your applications.", bentoComponent: "reveal-icon", icon: Shield
|
||||
},
|
||||
{
|
||||
title: "Fast Deployment", description: "From concept to solution launch in record time without sacrificing quality.", bentoComponent: "timeline", heading: "Project Launch", subheading: "Week 1", items: [
|
||||
{ label: "Discovery & scoping", detail: "Day 1-3" },
|
||||
{ label: "Design & development", detail: "Day 4-10" },
|
||||
{ label: "Testing & deployment", detail: "Day 11-14" }
|
||||
],
|
||||
completedLabel: "Live"},
|
||||
{
|
||||
title: "Seamless Integrations", description: "Connect with the tools you already use — CRMs, analytics, payments, and more.", bentoComponent: "orbiting-icons", centerIcon: Puzzle,
|
||||
items: [
|
||||
{ icon: Shield },
|
||||
{ icon: Monitor },
|
||||
{ icon: Zap },
|
||||
{ icon: TrendingUp }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Data-Driven Growth Trends", description: "Data-driven insights to optimize your solutions and drive business growth.", bentoComponent: "line-chart"}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
title="What Our Clients Say"
|
||||
description="Hear from leaders who have achieved remarkable success with our digital solutions."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Maria Santos", role: "CEO", company: "Luxuria Travel", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp?_wi=1"},
|
||||
{
|
||||
id: "2", name: "David Lee", role: "CTO", company: "Global Logistics Corp", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp?_wi=1"},
|
||||
{
|
||||
id: "3", name: "Sophie Chen", role: "Head of Product", company: "Innovate Health", rating: 4,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp?_wi=1"}
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "99%", label: "Client Satisfaction" },
|
||||
{ value: "2.5x", label: "ROI on Digital Projects" },
|
||||
{ value: "50+", label: "Projects Delivered" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
title="Why Choose Echo"
|
||||
description="Proven track record in deploying advanced digital solutions and achieving client success."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "projects", value: "50+", title: "Projects Delivered", description: "Successfully launched across diverse industries", icon: Rocket },
|
||||
{ id: "growth", value: "98%", title: "Customer Growth", description: "Average increase for our clients", icon: TrendingUp },
|
||||
{ id: "clients", value: "20+", title: "Happy Clients", description: "Trust us with their mission-critical initiatives", icon: Award }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="why-choose-us" data-section="why-choose-us">
|
||||
<FeatureCardSixteen
|
||||
title="Why Choose Echo"
|
||||
description="See the difference a growth-focused digital agency makes."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
negativeCard={{
|
||||
items: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web project - AgentFlow AI platform" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Branding",
|
||||
description: "Build a memorable brand identity that resonates with your audience.",
|
||||
bentoComponent: "media-stack",
|
||||
"Generic digital solutions with limited impact", "Slow development and hidden costs", "No clear strategy or measurable ROI", "Outdated methods with poor results", "No ongoing support for your systems"]
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand project 1" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Brand project 2" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<FeatureCardTwentySix
|
||||
title="Our Work"
|
||||
description="A selection of projects we've crafted for clients across industries."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View All Work", href: "#work" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Umbra Skincare",
|
||||
description: "Luxury fragrance e-commerce",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp",
|
||||
imageAlt: "Umbra Skincare website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
},
|
||||
{
|
||||
title: "Luxuria Travel",
|
||||
description: "Bespoke luxury travel experiences",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp",
|
||||
imageAlt: "Luxuria Travel website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
},
|
||||
{
|
||||
title: "Dental Care",
|
||||
description: "Premier dental practice",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp",
|
||||
imageAlt: "Luxury Dental Care website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
},
|
||||
{
|
||||
title: "Summit Roofing",
|
||||
description: "Professional roofing services",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp",
|
||||
imageAlt: "Summit Roofing website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
},
|
||||
{
|
||||
title: "Dubai Real Estate",
|
||||
description: "Luxury property listings",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp",
|
||||
imageAlt: "Dubai Real Estate website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<FeatureBento
|
||||
title="Our Promise"
|
||||
description="We deliver results that speak for themselves."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "All Devices Optimization",
|
||||
description: "Pixel-perfect websites that look stunning on every screen size and device.",
|
||||
bentoComponent: "phone",
|
||||
statusIcon: Lock,
|
||||
alertIcon: Monitor,
|
||||
alertTitle: "Responsive check",
|
||||
alertMessage: "All breakpoints passed",
|
||||
apps: [
|
||||
{ name: "Phone", icon: Phone },
|
||||
{ name: "SMS", icon: MessageCircle },
|
||||
{ name: "Books", icon: BookOpen },
|
||||
{ name: "TV", icon: Tv },
|
||||
{ name: "Camera", icon: Camera },
|
||||
{ name: "Music", icon: Music },
|
||||
{ name: "Settings", icon: Settings },
|
||||
{ name: "Chat", icon: MessageCircle },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Secure Hosting",
|
||||
description: "Enterprise-grade security and 99.9% uptime for your website.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Shield,
|
||||
},
|
||||
{
|
||||
title: "Fast Turnaround",
|
||||
description: "From concept to launch in record time without sacrificing quality.",
|
||||
bentoComponent: "timeline",
|
||||
heading: "Project Launch",
|
||||
subheading: "Week 1",
|
||||
items: [
|
||||
{ label: "Discovery & wireframes", detail: "Day 1-3" },
|
||||
{ label: "Design & development", detail: "Day 4-10" },
|
||||
{ label: "Testing & deployment", detail: "Day 11-14" },
|
||||
],
|
||||
completedLabel: "Live",
|
||||
},
|
||||
{
|
||||
title: "Seamless Integrations",
|
||||
description: "Connect with the tools you already use — CRMs, analytics, payments, and more.",
|
||||
bentoComponent: "orbiting-icons",
|
||||
centerIcon: Puzzle,
|
||||
items: [
|
||||
{ icon: Shield },
|
||||
{ icon: Monitor },
|
||||
{ icon: Zap },
|
||||
{ icon: TrendingUp },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Growth Trends",
|
||||
description: "Data-driven insights to optimize your search presence and drive traffic.",
|
||||
bentoComponent: "line-chart",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<TestimonialCardFifteen
|
||||
testimonial="Webild completely transformed our online presence. The team delivered a stunning website that exceeded our expectations and doubled our conversion rate."
|
||||
rating={5}
|
||||
author="— Maria Santos, CEO at Luxuria Travel"
|
||||
avatars={[
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Client" },
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<MetricCardOne
|
||||
title="Trusted by Industry Leaders"
|
||||
description="Years of experience building digital products that drive real results."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "projects", value: "100+", title: "Projects", description: "Successfully delivered across all industries", icon: Award },
|
||||
{ id: "satisfaction", value: "99%", title: "Satisfaction", description: "Client satisfaction rate and counting", icon: Users },
|
||||
{ id: "years", value: "8+", title: "Years", description: "Of crafting exceptional digital experiences", icon: TrendingUp },
|
||||
]}
|
||||
/>
|
||||
<FeatureCardSixteen
|
||||
title="Why Choose Webild"
|
||||
description="See the difference a professional web agency makes."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Generic templates with no personality",
|
||||
"Slow load times and poor performance",
|
||||
"No SEO strategy or search visibility",
|
||||
"Outdated design that hurts credibility",
|
||||
"No ongoing support after launch",
|
||||
],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Custom designs tailored to your brand",
|
||||
"Lightning-fast performance on all devices",
|
||||
"Built-in SEO to drive organic traffic",
|
||||
"Modern design that builds trust",
|
||||
"Dedicated support and maintenance",
|
||||
],
|
||||
}}
|
||||
/>
|
||||
<TeamCardFive
|
||||
title="Meet the Team"
|
||||
description="The creative minds behind your next project."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
mediaClassName="object-[65%_center]"
|
||||
team={[
|
||||
{ id: "1", name: "Sarah Miller", role: "Lead Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" },
|
||||
{ id: "2", name: "Valentina Reyes", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" },
|
||||
{ id: "3", name: "Carlos Mendoza", role: "UX Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" },
|
||||
]}
|
||||
/>
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about working with us."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "1", title: "How long does a typical project take?", content: "Most projects are completed within 2-4 weeks depending on scope and complexity. We'll provide a detailed timeline during our initial consultation." },
|
||||
{ id: "2", title: "What is your pricing structure?", content: "We offer project-based pricing tailored to your needs. Every project includes design, development, SEO optimization, and post-launch support." },
|
||||
{ id: "3", title: "Do you offer ongoing maintenance?", content: "Yes! We provide ongoing support and maintenance packages to keep your website updated, secure, and performing at its best." },
|
||||
{ id: "4", title: "Can you redesign my existing website?", content: "Absolutely. We specialize in website redesigns that modernize your brand while preserving your existing content and SEO rankings." },
|
||||
{ id: "5", title: "What technologies do you use?", content: "We build with modern technologies including Next.js, React, and Tailwind CSS to ensure fast, scalable, and maintainable websites." },
|
||||
]}
|
||||
/>
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
title="Ready to Transform Your Digital Presence?"
|
||||
description="Let's build something extraordinary together. Get in touch and let's discuss your next project."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[
|
||||
{ text: "Start Your Project", href: "#contact" },
|
||||
{ text: "View Our Work", href: "#work" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
"Custom digital solutions tailored to your goals", "Rapid deployment and optimized performance", "Data-driven strategy to ensure measurable ROI", "Cutting-edge tools and continuous improvement", "Dedicated support and maintenance"]
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardFive
|
||||
title="Meet Our Innovators"
|
||||
description="The creative minds and technical experts behind your next digital project."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
mediaClassName="object-[65%_center]"
|
||||
team={[
|
||||
{ id: "1", name: "Sarah Miller", role: "Lead Digital Strategist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp?_wi=2", imageAlt: "Sarah Miller" },
|
||||
{ id: "2", name: "Valentina Reyes", role: "Principal Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp?_wi=2", imageAlt: "Valentina Reyes" },
|
||||
{ id: "3", name: "Carlos Mendoza", role: "Solutions Architect", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp?_wi=2", imageAlt: "Carlos Mendoza" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about partnering with us for your digital initiatives."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "1", title: "How long does a typical digital project take?", content: "Most digital projects are completed within 4-12 weeks depending on scope, data availability, and complexity. We'll provide a detailed timeline during our initial consultation." },
|
||||
{ id: "2", title: "What is your pricing structure?", content: "We offer project-based pricing tailored to your needs. Every project includes strategy, development, integration, and post-deployment support." },
|
||||
{ id: "3", title: "Do you offer ongoing solution maintenance?", content: "Yes! We provide ongoing support and maintenance packages to keep your solutions updated, optimized, and performing accurately." },
|
||||
{ id: "4", title: "Can you integrate with my existing systems?", content: "Absolutely. We specialize in seamless integrations that enhance your current infrastructure while preserving existing data and workflows." },
|
||||
{ id: "5", title: "What technologies do you use?", content: "We leverage cutting-edge frameworks including modern web stacks, cloud services (AWS, Google Cloud, Azure), and AI/ML tools to ensure robust and scalable solutions." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
title="Ready to Grow Your Business?"
|
||||
description="Let's build something extraordinary with powerful digital solutions. Get in touch and let's discuss your next project."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[
|
||||
{ text: "Start Your Project", href: "/contact" },
|
||||
{ text: "Explore Our Work", href: "#case-studies" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterBase
|
||||
logoText="Webild"
|
||||
copyrightText="© 2026 | Webild"
|
||||
logoText="Echo"
|
||||
copyrightText="© 2026 | Echo"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Work", href: "#work" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
title: "Company", items: [
|
||||
{ label: "Why Us", href: "#why-choose-us" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Case Studies", href: "#case-studies" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Documentation", href: "/resources/documentation" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Web Development", href: "#" },
|
||||
{ label: "SEO", href: "#" },
|
||||
{ label: "Branding", href: "#" },
|
||||
{ label: "UI/UX Design", href: "#" },
|
||||
],
|
||||
title: "Our Services", items: [
|
||||
{ label: "Web Development", href: "#ai-services-overview" },
|
||||
{ label: "App Development", href: "#ai-services-overview" },
|
||||
{ label: "AI Automations", href: "#ai-services-overview" },
|
||||
{ label: "Marketing & Growth", href: "#ai-services-overview" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" },
|
||||
],
|
||||
},
|
||||
{ label: "Dribbble", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
|
||||
103
src/app/pricing/page.tsx
Normal file
103
src/app/pricing/page.tsx
Normal file
@@ -0,0 +1,103 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { CheckCircle, Sparkles } from "lucide-react";
|
||||
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Echo"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Our Services", id: "/#ai-services-overview" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Why Us", id: "/#why-choose-us" },
|
||||
{ name: "Team", id: "/#team" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "/#contact" }}
|
||||
/>
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
title="Flexible Pricing Plans"
|
||||
description="Choose the plan that best fits your business needs, with options for every stage of growth."
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
plans={[
|
||||
{
|
||||
id: "starter", badge: "Basic", badgeIcon: Sparkles,
|
||||
price: "$49/mo", name: "Starter", buttons: [{ text: "Get Started", href: "/contact" }],
|
||||
features: [
|
||||
"5 Page Website", "Basic SEO", "Mobile Responsive", "24/7 Support"],
|
||||
},
|
||||
{
|
||||
id: "pro", badge: "Recommended", badgeIcon: CheckCircle,
|
||||
price: "$99/mo", name: "Pro", buttons: [{ text: "Choose Pro", href: "/contact" }],
|
||||
features: [
|
||||
"10 Page Website", "Advanced SEO", "E-commerce Functionality", "CMS Integration", "Priority Support"],
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "Custom", badgeIcon: Sparkles,
|
||||
price: "Contact Us", name: "Enterprise", buttons: [{ text: "Request Demo", href: "/contact" }],
|
||||
features: [
|
||||
"Unlimited Pages", "Custom AI Automations", "Dedicated Project Manager", "24/7 Premium Support", "Scalable Infrastructure"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterBase
|
||||
logoText="Echo"
|
||||
copyrightText="© 2026 | Echo"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Why Us", href: "/#why-choose-us" },
|
||||
{ label: "Team", href: "/#team" },
|
||||
{ label: "Case Studies", href: "/case-studies" },
|
||||
{ label: "Contact", href: "/#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Services", items: [
|
||||
{ label: "Web Development", href: "/#ai-services-overview" },
|
||||
{ label: "App Development", href: "/#ai-services-overview" },
|
||||
{ label: "AI Automations", href: "/#ai-services-overview" },
|
||||
{ label: "Marketing & Growth", href: "/#ai-services-overview" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
190
src/app/services/web-development/page.tsx
Normal file
190
src/app/services/web-development/page.tsx
Normal file
@@ -0,0 +1,190 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Monitor, Code, Globe, Layers, Workflow, Rocket, TrendingUp, Shield, Lightbulb, CheckCircle, ArrowUpRight, Award } from "lucide-react";
|
||||
|
||||
export default function WebDevelopmentPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Web Development", id: "/services/web-development" },
|
||||
{ name: "App Development", id: "/services/app-development" },
|
||||
{ name: "Our Services", id: "/#ai-services-overview" },
|
||||
{ name: "Case Studies", id: "/#case-studies" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Why Us", id: "/#why-choose-us" },
|
||||
{ name: "Team", id: "/#team" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Documentation", id: "/resources/documentation" }
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Echo"
|
||||
navItems={navItems}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<MediaAbout
|
||||
title="Expert Web Development Services"
|
||||
description="We craft dynamic, high-performance websites and web applications tailored to your business needs. From custom e-commerce platforms to sophisticated content management systems, our solutions are built for scalability, security, and an unparalleled user experience."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=1"
|
||||
imageAlt="Modern Web Development Interface"
|
||||
tag="Building Digital Foundations"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Book a Discovery Call", href: "/contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="web-portfolio" data-section="web-portfolio">
|
||||
<FeatureCardTwentySix
|
||||
title="Our Web Development Portfolio"
|
||||
description="Explore some of our recent web projects that deliver exceptional results and user satisfaction."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
buttons={[{ text: "View All Projects", href: "/#case-studies" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Custom E-commerce Platform", description: "Developed a scalable e-commerce solution with integrated payment gateways and inventory management.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "E-commerce Website Screenshot", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Interactive Corporate Website", description: "Designed and built a responsive corporate website with dynamic content and advanced analytics.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Corporate Website Design", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Membership Portal Development", description: "Created a secure member portal with personalized dashboards and exclusive content access.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Membership Portal Screenshot", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Booking System Integration", description: "Integrated a robust online booking system for a service business, enhancing customer experience.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Online Booking System", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="web-benefits" data-section="web-benefits">
|
||||
<FeatureCardTwelve
|
||||
title="Why Choose Echo for Your Web Project?"
|
||||
description="Partner with us for unparalleled expertise, innovative solutions, and a commitment to your digital success."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "1", label: "Performance Optimized", title: "Blazing Fast & Responsive", items: ["Lightning-fast load times", "Seamless experience on any device", "Optimized for search engines"]
|
||||
},
|
||||
{
|
||||
"id": "2", label: "Custom Solutions", title: "Tailored to Your Vision", items: ["Bespoke design and functionality", "Scalable architecture for growth", "Integration with existing systems"]
|
||||
},
|
||||
{
|
||||
id: "3", label: "Security & Reliability", title: "Robust & Secure Foundations", items: ["Enterprise-grade security protocols", "Regular updates and maintenance", "99.9% uptime guarantee"]
|
||||
},
|
||||
{
|
||||
id: "4", label: "Future-Proof Technology", title: "Built with Latest Stacks", items: ["Modern frameworks and libraries", "Easy to update and expand", "Sustainable and long-term solutions"]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="web-metrics" data-section="web-metrics">
|
||||
<MetricCardOne
|
||||
title="Web Success by the Numbers"
|
||||
description="Our proven approach leads to tangible results for businesses across various sectors."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "traffic", value: "+45%", title: "Website Traffic", description: "Average increase in organic traffic for clients", icon: Globe },
|
||||
{ id: "conversions", value: "+20%", title: "Conversion Rates", description: "Boost in goal completion rates", icon: TrendingUp },
|
||||
{ id: "satisfaction", value: "99%", title: "Client Satisfaction", description: "Our commitment to excellence", icon: Award }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="web-cta-intro" data-section="web-cta-intro">
|
||||
<ContactText
|
||||
text="Ready to build your digital masterpiece? Let's discuss your vision and bring it to life with cutting-edge web development."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Get a Free Quote", href: "/contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="web-cta-final" data-section="web-cta-final">
|
||||
<ContactCTA
|
||||
tag="Next Step"
|
||||
title="Launch Your Next Web Project"
|
||||
description="Schedule a free consultation to explore how we can elevate your online presence with a stunning, high-performing website."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[{ text: "Book a Discovery Call", href: "/contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBase
|
||||
logoText="Echo"
|
||||
copyrightText="© 2026 | Echo"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Why Us", href: "/#why-choose-us" },
|
||||
{ label: "Team", href: "/#team" },
|
||||
{ label: "Case Studies", href: "/#case-studies" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Documentation", href: "/resources/documentation" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Our Services", items: [
|
||||
{ label: "Web Development", href: "/services/web-development" },
|
||||
{ label: "App Development", href: "/services/app-development" },
|
||||
{ label: "AI Automations", href: "/#ai-services-overview" },
|
||||
{ label: "Marketing & Growth", href: "/#ai-services-overview" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user