18 Commits

Author SHA1 Message Date
84cd79db00 Update src/app/services/page.tsx 2026-03-03 09:49:57 +00:00
b6a70afa75 Update src/app/page.tsx 2026-03-03 09:49:54 +00:00
e1498567aa Update src/app/page.tsx 2026-03-03 09:46:06 +00:00
112dd17e3a Update src/app/layout.tsx 2026-03-03 09:46:05 +00:00
3b5d9b026b Update src/app/services/page.tsx 2026-03-03 09:43:48 +00:00
b72fb91cbd Update src/app/page.tsx 2026-03-03 09:43:48 +00:00
321d83df4d Update src/app/layout.tsx 2026-03-03 09:41:50 +00:00
44e8fe22f3 Update src/app/page.tsx 2026-03-03 09:39:29 +00:00
e1bfc34f59 Update src/app/layout.tsx 2026-03-03 09:39:28 +00:00
17d186aa49 Merge version_1 into main
Merge version_1 into main
2026-03-03 09:29:11 +00:00
2467f8545b Merge version_1 into main
Merge version_1 into main
2026-03-03 09:26:13 +00:00
9a17417b37 Merge version_1 into main
Merge version_1 into main
2026-03-03 09:22:44 +00:00
4229d80609 Merge version_1 into main
Merge version_1 into main
2026-03-03 09:14:48 +00:00
9c14f7412e Merge version_1 into main
Merge version_1 into main
2026-03-03 09:03:25 +00:00
c0b65ad6a2 Merge version_1 into main
Merge version_1 into main
2026-03-03 08:59:49 +00:00
afa8e3ed29 Merge version_1 into main
Merge version_1 into main
2026-03-03 08:54:11 +00:00
360535126e Merge version_1 into main
Merge version_1 into main
2026-03-03 08:52:07 +00:00
de5c5265b4 Merge version_1 into main
Merge version_1 into main
2026-03-03 08:49:43 +00:00
3 changed files with 50 additions and 87 deletions

View File

@@ -1,42 +1,20 @@
import type { Metadata } from "next";
import { Raleway } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "DevForge - Premium Software Development & AI Automation", description: "Custom software development agency specializing in AI automation, SaaS MVPs, and enterprise solutions. Trusted by startups and enterprises globally.", keywords: "software development, AI automation, SaaS, custom software, enterprise solutions, technology agency", robots: {
index: true,
follow: true,
},
openGraph: {
title: "DevForge - Transform Your Business with Software", description: "Premium custom software development and AI automation solutions for ambitious organizations.", type: "website", siteName: "DevForge", url: "https://devforge.io", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/a-sleek-modern-software-development-dash-1772527671063-bebe365c.png", alt: "DevForge - Software Development Platform"},
],
},
twitter: {
card: "summary_large_image", title: "DevForge - Software Development & AI Automation", description: "Custom software solutions powering innovation globally.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/a-sleek-modern-software-development-dash-1772527671063-bebe365c.png"],
},
};
title: "DevForge - Premium Software Development", description: "Next-generation software development agency specializing in custom solutions, AI automation, and scalable enterprise platforms."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1404,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -91,7 +91,7 @@ export default function HomePage() {
showBlur={true}
showDimOverlay={true}
buttons={[
{ text: "Start Your Project", href: "contact" },
{ text: "Build Your Solution", href: "contact" },
{ text: "View Our Work", href: "services" },
]}
buttonAnimation="slide-up"
@@ -149,10 +149,10 @@ export default function HomePage() {
{
id: "enterprise-solutions", title: "Enterprise Solutions", description: "Large-scale system integration, data management, and infrastructure solutions designed for mission-critical applications and enterprise reliability requirements.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/enterprise-software-solutions-architectu-1772527673363-117f00ea.png", imageAlt: "Enterprise solutions architecture"},
]}
gridVariant="uniform-4"
gridVariant="uniform-3-items"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
useInvertedBackground="noInvert"
buttons={[{ text: "Explore Services", href: "services" }]}
buttonAnimation="blur-reveal"
/>
@@ -278,4 +278,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -3,11 +3,11 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
import SplitAbout from "@/components/sections/about/SplitAbout";
import ContactText from "@/components/sections/contact/ContactText";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Sparkles, Code, Cpu, TrendingUp, Globe } from "lucide-react";
import { ArrowRight, Sparkles } from "lucide-react";
const footerColumns = [
{
@@ -73,74 +73,60 @@ export default function ServicesPage() {
/>
</div>
{/* Services Section */}
<div id="services" data-section="services">
<FeatureCardTwentySeven
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroOverlay
title="Our Comprehensive Services"
description="End-to-end software development solutions tailored to solve your unique business challenges and drive measurable results. From concept to deployment, we handle every aspect with technical excellence and strategic thinking."
description="Explore our full range of software development services designed to drive innovation, efficiency, and sustainable growth for your organization."
tag="What We Offer"
tagIcon={Sparkles}
tagAnimation="blur-reveal"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/a-sleek-modern-software-development-dash-1772527671063-bebe365c.png"
imageAlt="Services overview dashboard"
textPosition="bottom-left"
showBlur={true}
showDimOverlay={true}
buttons={[
{ text: "Schedule Consultation", href: "contact" },
{ text: "View Case Studies", href: "/" },
]}
buttonAnimation="slide-up"
/>
</div>
{/* Services Detail Section */}
<div id="services-detail" data-section="services-detail">
<FeatureCardTwentySeven
title="Service Offerings"
description="Comprehensive software solutions tailored to your unique business needs and technical requirements."
tag="Services"
tagIcon={Sparkles}
tagAnimation="blur-reveal"
features={[
{
id: "custom-development", title: "Custom Software Development", description: "Bespoke software solutions built with modern technologies and architectural best practices. We combine clean code principles, scalable architecture, and cutting-edge frameworks to create applications that stand the test of time and scale effortlessly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/custom-software-development-workflow-vis-1772527670830-12700389.png", imageAlt: "Custom software development workflow"},
id: "custom-development", title: "Custom Software Development", description: "Bespoke software solutions built with modern technologies and architectural best practices to solve complex business challenges and deliver measurable ROI.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/custom-software-development-workflow-vis-1772527670830-12700389.png", imageAlt: "Custom software development workflow"},
{
id: "ai-automation", title: "AI Automation Solutions", description: "Leverage artificial intelligence and machine learning to automate processes, enhance decision-making, and unlock new capabilities in your operations. Our AI specialists design intelligent systems that learn and adapt to optimize your business outcomes.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/artificial-intelligence-and-machine-lear-1772527671596-b816dded.png", imageAlt: "AI automation system visualization"},
id: "ai-automation", title: "AI Automation Solutions", description: "Leverage artificial intelligence and machine learning to automate processes, enhance decision-making, and unlock new capabilities in your operations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/artificial-intelligence-and-machine-lear-1772527671596-b816dded.png", imageAlt: "AI automation system visualization"},
{
id: "saas-mvp", title: "SaaS MVP Development", description: "Rapid development of minimum viable products for software-as-a-service platforms. We combine speed-to-market with scalable cloud-native architecture, ensuring your product can grow from launch to millions of users.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/saas-mvp-development-process-visualizati-1772527671532-6d1e632c.png", imageAlt: "SaaS MVP development process"},
{
id: "enterprise-solutions", title: "Enterprise Solutions", description: "Large-scale system integration, data management, and infrastructure solutions designed for mission-critical applications. We build enterprise-grade systems with 99.99% uptime requirements, handling millions of transactions securely and reliably.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/enterprise-software-solutions-architectu-1772527673363-117f00ea.png", imageAlt: "Enterprise solutions architecture"},
id: "saas-mvp", title: "SaaS MVP Development", description: "Rapid development of minimum viable products for software-as-a-service platforms, combining speed-to-market with scalable cloud-native architecture.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/saas-mvp-development-process-visualizati-1772527671532-6d1e632c.png", imageAlt: "SaaS MVP development process"},
]}
gridVariant="uniform-4"
gridVariant="uniform-3-items"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Let's Discuss Your Project", href: "contact" }]}
useInvertedBackground="noInvert"
buttons={[{ text: "Explore All Services", href: "/" }]}
buttonAnimation="blur-reveal"
/>
</div>
{/* Service Details Section */}
<div id="service-details" data-section="service-details">
<SplitAbout
title="Our Development Approach"
description="We follow proven methodologies and best practices that combine technical excellence with strategic business thinking. Every project benefits from our accumulated experience and commitment to delivering transformative results."
tag="Methodology"
tagIcon={Code}
tagAnimation="blur-reveal"
bulletPoints={[
{
title: "Discovery & Strategy", description: "We begin with comprehensive discovery, understanding your business goals, technical requirements, and market context to inform our architecture and technology decisions.", icon: Sparkles,
},
{
title: "Agile Development", description: "Using agile sprint-based methodologies, we deliver working software regularly, maintain transparent communication, and adapt to changing requirements with ease.", icon: TrendingUp,
},
{
title: "Quality Assurance", description: "Rigorous testing including unit tests, integration tests, E2E tests, security audits, and performance optimization ensure production-ready code every time.", icon: Code,
},
{
title: "Post-Launch Support", description: "Ongoing monitoring, maintenance, performance optimization, and feature enhancements keep your system running at peak efficiency while you focus on growing your business.", icon: Globe,
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/a-dynamic-team-of-diverse-software-devel-1772527670697-2850cbf9.png"
imageAlt="DevForge development approach and methodology"
mediaAnimation="slide-up"
imagePosition="left"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Learn About Our Process", href: "#" }]}
buttonAnimation="blur-reveal"
/>
</div>
{/* Contact CTA Section */}
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactText
text="Ready to start your next project? Let's discuss how we can help you achieve your business goals with cutting-edge software solutions."
text="Ready to transform your business with our comprehensive software solutions? Let's discuss your project requirements and build your success story."
animationType="entrance-slide"
buttons={[
{ text: "Get in Touch", href: "contact" },
{ text: "Schedule Consultation", href: "contact" },
{ text: "Get a Proposal", href: "contact" },
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
@@ -157,4 +143,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}