Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c17ae28d5a | |||
| cb8827ba77 | |||
| eec4f0a2c9 | |||
| 86217f56c4 | |||
| b64628e781 | |||
| d50b6d236f | |||
| bc3766094f | |||
| a2c709d0e5 | |||
| 1103291c52 | |||
| cb0195d0b4 | |||
| 3d140f8d11 | |||
| 787b486988 | |||
| 3e01bb775c | |||
| 218d0e14b4 | |||
| c31f2ddddb | |||
| 46938f678d | |||
| 3e78473661 | |||
| 447e813902 |
79
src/app/ai-accountant/page.tsx
Normal file
79
src/app/ai-accountant/page.tsx
Normal file
@@ -0,0 +1,79 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import { Calculator, DollarSign, PieChart, ShieldCheck, Receipt } from "lucide-react";
|
||||
|
||||
export default function AIAccountantPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "AI HR", id: "/ai-hr" },
|
||||
{ name: "AI Accountant", id: "/ai-accountant" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="AI Accountant Solutions"
|
||||
description="Take control of your finances with automated accounting, expense tracking, and real-time financial reporting."
|
||||
tag="Financial Intelligence"
|
||||
tagIcon={Calculator}
|
||||
buttons={[{ text: "Get Started", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureBorderGlow
|
||||
title="Key Benefits"
|
||||
description="Drive financial precision and efficiency with AI technology."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{ icon: Receipt, title: "Expense Automation", description: "Automated receipt scanning and categorization for effortless expense reporting." },
|
||||
{ icon: DollarSign, title: "Smart Tax Preparation", description: "Automated tax planning and filing with real-time regulatory compliance." },
|
||||
{ icon: PieChart, title: "Financial Forecasting", description: "AI models that predict cash flow and provide actionable growth insights." },
|
||||
{ icon: ShieldCheck, title: "Audit Protection", description: "Secure, tamper-proof financial logs with built-in audit trails and compliance tracking." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Contact"
|
||||
title="Ready to Optimize Finances?"
|
||||
description="Get in touch for a demo of our AI Accountant platform."
|
||||
buttons={[{ text: "Contact Us", href: "#" }]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoEmphasis
|
||||
logoText="Webild"
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "AI HR", href: "/ai-hr" }, { label: "AI Accountant", href: "/ai-accountant" }] }
|
||||
]}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
79
src/app/ai-hr/page.tsx
Normal file
79
src/app/ai-hr/page.tsx
Normal file
@@ -0,0 +1,79 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import { BrainCircuit, Users, FileText, BarChart3, Clock } from "lucide-react";
|
||||
|
||||
export default function AIHRPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "AI HR", id: "/ai-hr" },
|
||||
{ name: "AI Accountant", id: "/ai-accountant" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="AI-Powered HR Management"
|
||||
description="Automate your human resources processes, from recruitment to performance tracking, with our intelligent AI solutions."
|
||||
tag="HR Automation"
|
||||
tagIcon={BrainCircuit}
|
||||
buttons={[{ text: "Get Started", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureBorderGlow
|
||||
title="Key Features"
|
||||
description="Simplify your operations with these automated tools."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{ icon: Users, title: "Automated Recruitment", description: "AI-driven resume screening and candidate matching to find the best talent faster." },
|
||||
{ icon: FileText, title: "Onboarding Automation", description: "Digital document processing and personalized onboarding flows for new employees." },
|
||||
{ icon: BarChart3, title: "Workforce Analytics", description: "Real-time insights into employee productivity, engagement, and attrition rates." },
|
||||
{ icon: Clock, title: "Smart Scheduling", description: "Intelligent shift planning and time-off request management." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Contact"
|
||||
title="Ready to Modernize HR?"
|
||||
description="Talk to us about deploying AI HR solutions in your company."
|
||||
buttons={[{ text: "Contact Us", href: "#" }]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoEmphasis
|
||||
logoText="Webild"
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "AI HR", href: "/ai-hr" }, { label: "AI Accountant", href: "/ai-accountant" }] }
|
||||
]}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
47
src/app/ai-manager/page.tsx
Normal file
47
src/app/ai-manager/page.tsx
Normal file
@@ -0,0 +1,47 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import ReactLenis from "lenis/react";
|
||||
|
||||
export default function AIMangerPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "AI Manager", id: "/ai-manager" },
|
||||
{ name: "AI Sales Director", id: "/ai-sales-director" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-16 px-6 max-w-5xl mx-auto">
|
||||
<h1 className="text-5xl font-bold mb-8">AI Manager Solution</h1>
|
||||
<p className="text-xl mb-12">Our AI Manager solution streamlines operations, automates complex workflows, and provides data-driven decision support for your business infrastructure.</p>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Webild"
|
||||
columns={[{ items: [{ label: "Home", href: "/" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
47
src/app/ai-sales-director/page.tsx
Normal file
47
src/app/ai-sales-director/page.tsx
Normal file
@@ -0,0 +1,47 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import ReactLenis from "lenis/react";
|
||||
|
||||
export default function AISalesDirectorPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "AI Manager", id: "/ai-manager" },
|
||||
{ name: "AI Sales Director", id: "/ai-sales-director" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-16 px-6 max-w-5xl mx-auto">
|
||||
<h1 className="text-5xl font-bold mb-8">AI Sales Director</h1>
|
||||
<p className="text-xl mb-12">Supercharge your revenue with our AI Sales Director, a tool designed to identify high-potential leads, automate follow-ups, and optimize your sales pipeline.</p>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Webild"
|
||||
columns={[{ items: [{ label: "Home", href: "/" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
83
src/app/booking/page.tsx
Normal file
83
src/app/booking/page.tsx
Normal file
@@ -0,0 +1,83 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import Textarea from "@/components/form/Textarea";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
|
||||
export default function BookingPage() {
|
||||
const [auditRequest, setAuditRequest] = useState("");
|
||||
const [demoRequest, setDemoRequest] = useState("");
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Work", id: "/#work" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Booking", id: "/booking" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
button={{ text: "Book Now", href: "/booking" }}
|
||||
/>
|
||||
</div>
|
||||
<main className="pt-32 pb-16">
|
||||
<div id="contact-text" data-section="contact-text">
|
||||
<ContactText
|
||||
text="Book Your Process Audit & Prototype Demo"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
useInvertedBackground={false}
|
||||
className="mb-12"
|
||||
/>
|
||||
</div>
|
||||
<div className="max-w-3xl mx-auto p-8 bg-white/5 rounded-3xl backdrop-blur-md">
|
||||
<div className="space-y-6">
|
||||
<h2 className="text-2xl font-semibold">Process Audit Details</h2>
|
||||
<Textarea
|
||||
value={auditRequest}
|
||||
onChange={setAuditRequest}
|
||||
placeholder="Describe your current process and goals for the audit..."
|
||||
/>
|
||||
<h2 className="text-2xl font-semibold">Prototype Demonstration Request</h2>
|
||||
<Textarea
|
||||
value={demoRequest}
|
||||
onChange={setDemoRequest}
|
||||
placeholder="What features would you like to see in a prototype demonstration?"
|
||||
/>
|
||||
<button className="px-8 py-4 bg-white text-black rounded-full font-bold hover:opacity-80 transition">
|
||||
Submit Request
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Webild"
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Booking", href: "/booking" }] },
|
||||
{ items: [{ label: "Web Development", href: "/booking" }, { label: "SEO", href: "/booking" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
77
src/app/case-studies/page.tsx
Normal file
77
src/app/case-studies/page.tsx
Normal file
@@ -0,0 +1,77 @@
|
||||
"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 MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { ArrowUpRight, Users, TrendingUp, Award } from "lucide-react";
|
||||
|
||||
export default function CaseStudiesPage() {
|
||||
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="Webild"
|
||||
navItems={[
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Case Studies", id: "case-studies" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
<FeatureCardTwentySix
|
||||
title="Successful Implementations"
|
||||
description="Detailed breakdown of projects in high-impact industries."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Advanced Health Clinic", description: "Optimized patient acquisition pipeline resulting in 45% increase in appointments.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Health Clinic Case Study", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"},
|
||||
{
|
||||
title: "Metropolis Realty", description: "Scalable property listing platform with 60% faster load times and 30% higher engagement.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Real Estate Case Study", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"},
|
||||
]}
|
||||
/>
|
||||
<MetricCardOne
|
||||
title="Key Results"
|
||||
description="Measurable impacts delivered through our strategy."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "appointments", value: "45%", title: "Appointment Growth", description: "Driven by health portal optimization", icon: Award },
|
||||
{ id: "engagement", value: "30%", title: "Higher Engagement", description: "Across all real estate digital assets", icon: Users },
|
||||
{ id: "performance", value: "60%", title: "Performance Boost", description: "Faster load times on mobile devices", icon: TrendingUp },
|
||||
]}
|
||||
/>
|
||||
<FooterBase
|
||||
logoText="Webild"
|
||||
copyrightText="© 2026 | Webild"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Work", href: "/work" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Services", items: [{ label: "Web Development", href: "#" }, { label: "SEO", href: "#" }, { label: "Branding", href: "#" }, { label: "UI/UX Design", href: "#" }] },
|
||||
{ title: "Connect", items: [{ label: "Twitter", href: "#" }, { label: "LinkedIn", href: "#" }, { label: "Instagram", href: "#" }, { label: "Dribbble", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -18,7 +18,7 @@ const inter = Inter({
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = { title: 'Webild Agency | Premium Web Design & Digital Strategy', description: 'Elevate your brand with Webild Agency. We craft high-performance, custom websites and digital experiences designed to scale your business and captivate audiences.' };
|
||||
export const metadata: Metadata = { title: 'Webild - AI Solutions', description: 'Enterprise-grade AI solutions for modern business operations.' };
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
|
||||
223
src/app/page.tsx
223
src/app/page.tsx
@@ -36,9 +36,10 @@ export default function WebAgency2Page() {
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Booking", id: "/booking" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
button={{ text: "Book Now", href: "/booking" }}
|
||||
/>
|
||||
<HeroSplitDoubleCarousel
|
||||
title="We Build Digital Experiences"
|
||||
@@ -48,7 +49,7 @@ export default function WebAgency2Page() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
buttons={[
|
||||
{ text: "Start Project", href: "#contact" },
|
||||
{ text: "Book Consultation", href: "/booking" },
|
||||
{ text: "View Work", href: "#work" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -74,32 +75,22 @@ export default function WebAgency2Page() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttons={[{ text: "All Services", href: "#services" }]}
|
||||
buttons={[{ text: "Book Service Audit", href: "/booking" }]}
|
||||
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: "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",
|
||||
items: [
|
||||
title: "Web Development", description: "Custom-built websites that are fast, responsive, and designed to convert.", bentoComponent: "media-stack", 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",
|
||||
items: [
|
||||
title: "Branding", description: "Build a memorable brand identity that resonates with your audience.", bentoComponent: "media-stack", 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" },
|
||||
@@ -112,114 +103,25 @@ export default function WebAgency2Page() {
|
||||
description="A selection of projects we've crafted for clients across industries."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View All Work", href: "#work" }]}
|
||||
buttons={[{ text: "Book Project Demo", href: "/booking" }]}
|
||||
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: "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: "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: "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: "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",
|
||||
},
|
||||
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: "#"},
|
||||
]}
|
||||
/>
|
||||
<TestimonialCardFifteen
|
||||
@@ -233,79 +135,14 @@ export default function WebAgency2Page() {
|
||||
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" },
|
||||
{ text: "Book Now", href: "/booking" },
|
||||
{ text: "Contact Us", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -315,26 +152,24 @@ export default function WebAgency2Page() {
|
||||
copyrightText="© 2026 | Webild"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Work", href: "#work" },
|
||||
{ label: "Booking", href: "/booking" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Web Development", href: "#" },
|
||||
{ label: "SEO", href: "#" },
|
||||
{ label: "Branding", href: "#" },
|
||||
{ label: "UI/UX Design", href: "#" },
|
||||
title: "Services", items: [
|
||||
{ label: "Web Development", href: "/booking" },
|
||||
{ label: "SEO", href: "/booking" },
|
||||
{ label: "Branding", href: "/booking" },
|
||||
{ label: "UI/UX Design", href: "/booking" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
|
||||
Reference in New Issue
Block a user