From 433cb1f6e14ba39dc6292ca93f5eb239dc222d0f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:42:02 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 108 +++++++++++++++++++++------------------ 1 file changed, 59 insertions(+), 49 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fee3f0f..cfe8037 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,8 +2,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Send } from "lucide-react"; @@ -63,57 +61,69 @@ const ContactPage = () => { {/* Contact Section */}
- +
+
+
+
+
+ + Get In Touch +
+

Ready to Transform Your Business?

+

Let's bring your vision to life with cutting-edge web and mobile solutions tailored to your goals. Partner with us to unlock your digital potential.

+
+ + +

We respect your privacy. Unsubscribe at any time.

+
+
+
+ Contact us - modern office environment +
+
+
+
{/* FAQ Section */}
- +
+
+
+
+

Frequently Asked Questions

+

Find answers to common questions about our services, process, and how we can help transform your business.

+
+
+ {[ + { + title: "What services does Kraftcode offer?", content: "We provide comprehensive digital solutions including website development, iOS and Android app development, custom development, performance optimization, and security implementation. Our services are tailored to meet your unique business requirements." + }, + { + title: "How long does a typical project take?", content: "Project timelines vary based on complexity and scope. Most web projects take 2-4 months, while mobile apps typically require 3-6 months. We provide detailed timelines and milestones during the planning phase." + }, + { + title: "What is your development process?", content: "We follow a structured approach: Discovery & Planning → Design & Prototyping → Development → Testing → Deployment → Support. We maintain regular communication and provide progress updates throughout the project." + }, + { + title: "Do you offer post-launch support?", content: "Yes, we provide comprehensive post-launch support including maintenance, updates, bug fixes, and performance monitoring. We offer various support packages tailored to your needs." + }, + { + title: "How do you ensure quality and security?", content: "Quality is built into our process through rigorous testing, code reviews, and quality assurance protocols. Security is implemented from the ground up, with compliance to industry standards and best practices." + }, + { + title: "Can you work with our existing team?", content: "Absolutely. We're experienced in collaborating with in-house teams, agencies, and external partners. We can integrate seamlessly into your existing workflow and development processes." + } + ].map((faq, index) => ( +
+ {faq.title} +

{faq.content}

+
+ ))} +
+
+
+
{/* Footer */} -- 2.49.1 From 49f808274e3c09a96ac9fddc7413f4b97e676fa8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:42:03 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8e765ab..b619051 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,6 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; import TextAbout from "@/components/sections/about/TextAbout"; @@ -10,7 +9,7 @@ import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Zap, Lightbulb, Globe, Smartphone, Code, Award, MessageSquare, CheckCircle, Target, Send, Briefcase } from "lucide-react"; +import { Zap, Lightbulb, Globe, Smartphone, Code, Award, MessageSquare, CheckCircle, Target } from "lucide-react"; const HomePage = () => { const navItems = [ @@ -100,7 +99,7 @@ const HomePage = () => { { text: "See Our Services", href: "/services" }, ]} buttonAnimation="slide-up" - background={{ variant: "noise" }} + background={{ variant: "glowing-orb" }} useInvertedBackground={false} ariaLabel="Hero section" /> -- 2.49.1 From 7ad620d57f3dd27aa9aeaedabbaa3c005efaffb4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:42:05 +0000 Subject: [PATCH 3/3] Update src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 70 +++++++++++++++++++++++--------------- 1 file changed, 42 insertions(+), 28 deletions(-) diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 60dc880..3b6ffb2 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -2,7 +2,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Briefcase } from "lucide-react"; @@ -62,33 +61,48 @@ const PortfolioPage = () => { {/* Portfolio Case Studies */}
- +
+
+
+
+ + Case Studies +
+

Turning Vision Into Reality

+

Showcase of our successful projects across diverse industries. Each case study represents our commitment to delivering innovative solutions and measurable business impact.

+
+
+
+ Finance platform +
+

Financial Tech Platform

+

Finance

+
+
+
+ HR system +
+

HR Management System

+

Human Resources

+
+
+
+ Legal platform +
+

Legal Services Platform

+

Legal Tech

+
+
+
+ Startup solution +
+

Startup Solution Suite

+

Startup

+
+
+
+
+
{/* Footer */} -- 2.49.1