From 6dcfc28ab890e94c2ee7c0aceb58ab25e129b571 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:49:07 +0000 Subject: [PATCH 1/7] Update src/app/about/page.tsx --- src/app/about/page.tsx | 67 +++++++++++++++++++++--------------------- 1 file changed, 33 insertions(+), 34 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c67d16f..8c77969 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,9 +3,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; -import AboutMetric from "@/components/sections/about/AboutMetric"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Award, Users, Clock, MapPin } from "lucide-react"; +import { Award, Phone } from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -61,54 +62,52 @@ export default function AboutPage() { - {/* About Hero Section */} -
+ {/* Hero Section */} +
- {/* Company Metrics Section */} -
- +
- {/* Our Story Section */} -
- +
@@ -121,4 +120,4 @@ export default function AboutPage() {
); -} \ No newline at end of file +} -- 2.49.1 From f67f16e5de87def692c3c0d3222909306baecbae Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:49:08 +0000 Subject: [PATCH 2/7] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 93 +++++++++++++--------------------------- 1 file changed, 29 insertions(+), 64 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4c0ecac..2805f98 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,8 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Phone } from "lucide-react"; @@ -18,8 +18,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -27,8 +26,7 @@ export default function ContactPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: 04 234 4002", href: "tel:+97142344002" }, { label: "WhatsApp", href: "https://wa.me/97142344002" }, { label: "Email Us", href: "/contact" }, @@ -36,8 +34,7 @@ export default function ContactPage() { ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Typing Services", href: "/services" }, { label: "Document Assistance", href: "/services" }, { label: "Visa Support", href: "/services" }, @@ -64,71 +61,39 @@ export default function ContactPage() { - {/* Main Contact CTA Section */} -
- +
- {/* FAQ Section */} -
- + console.log("Email submitted:", email)} />
@@ -141,4 +106,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 70236d1d52ba5e6a04051533a53fc4f024dc8be7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:49:08 +0000 Subject: [PATCH 3/7] Update src/app/layout.tsx --- src/app/layout.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 92d884b..56306a7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,19 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Create Next App", description: "Generated by create next app"}; + title: "Aajel Business Services - Professional Typing & Business Support in Dubai", description: "Fast, reliable typing, document processing, visa assistance, and business support services in Dubai. Trusted by 500+ businesses." +}; export default function RootLayout({ children, @@ -20,7 +22,7 @@ export default function RootLayout({ }) { return ( - + {children}