+ {/* Contact CTA Section */}
+
);
-}
\ No newline at end of file
+}
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index e1565ec..20dc8ba 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -2,10 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
-import { Phone } from "lucide-react";
+import { ShieldCheck, Phone } from "lucide-react";
export default function ServicesPage() {
const navItems = [
@@ -18,8 +19,7 @@ export default function ServicesPage() {
const footerColumns = [
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Services", href: "/services" },
@@ -27,8 +27,7 @@ export default function ServicesPage() {
],
},
{
- 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 +35,7 @@ export default function ServicesPage() {
],
},
{
- title: "Services",
- items: [
+ title: "Services", items: [
{ label: "Typing Services", href: "/services" },
{ label: "Document Assistance", href: "/services" },
{ label: "Visa Support", href: "/services" },
@@ -64,12 +62,31 @@ export default function ServicesPage() {
- {/* Services Detail Section */}
-
+ {/* Hero Section */}
+
+
+
+
+ {/* Services Details Section */}
+
- {/* CTA Section */}
-
+ {/* Contact CTA Section */}
+
);
-}
\ No newline at end of file
+}
diff --git a/src/app/styles/base.css b/src/app/styles/base.css
index 38cd8a1..c719d19 100644
--- a/src/app/styles/base.css
+++ b/src/app/styles/base.css
@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
- font-family: var(--font-lato), sans-serif;
+ font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
- font-family: var(--font-lato), sans-serif;
+ font-family: var(--font-dm-sans), sans-serif;
}