Files
2c409a2f-c8a8-4439-a103-8e3…/src/app/services/page.tsx

128 lines
5.9 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import ProductCardFour from "@/components/sections/product/ProductCardFour";
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Phone } from "lucide-react";
export default function ServicesPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "Projects", id: "projects" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
title: "Services", items: [
{ label: "Road Project Management", href: "#services" },
{ label: "Property Valuation", href: "#services" },
{ label: "Engineering Consultation", href: "#services" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Projects", href: "#projects" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Contact Info", items: [
{ label: "Mansoura, Egypt", href: "#" },
{ label: "01096565180", href: "tel:+201096565180" },
{ label: "WhatsApp Support", href: "https://wa.me/201096565180" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Start Your Project", href: "/contact" }}
brandName="Trusted Real Estate"
/>
</div>
<div id="product" data-section="product">
<ProductCardFour
title="Our Services"
description="Comprehensive engineering and real estate solutions tailored to your project needs"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false}
products={[
{
id: "1", name: "Road Project Management", price: "Professional Service", variant: "Planning to Execution", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=puoxei&_wi=3", imageAlt: "Road project management services"},
{
id: "2", name: "Property Valuation", price: "Market Assessment", variant: "Land & Real Estate", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=aomw0t&_wi=3", imageAlt: "Property valuation expertise"},
{
id: "3", name: "Engineering Consultation", price: "Expert Advice", variant: "Projects & Infrastructure", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qvdmfu&_wi=4", imageAlt: "Engineering consultation services"},
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardThree
title="Service Details"
description="Each service is delivered with precision, professionalism, and commitment to excellence"
textboxLayout="default"
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
useInvertedBackground={false}
features={[
{
id: "01", title: "Highway Development & Infrastructure", description:
"Complete project management for highway expansion, infrastructure improvement, and road development initiatives. We ensure modern standards, regulatory compliance, and timely delivery for all scale projects.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=l43wmw&_wi=3", imageAlt: "Highway infrastructure development"},
{
id: "02", title: "Comprehensive Land Surveying", description:
"Professional land surveying services with advanced measurement equipment and methodologies. Our experts provide precise data preparation for engineering projects and property assessments across Egypt.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=hse10n&_wi=3", imageAlt: "Land surveying and measurement"},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Get Started?"
tagIcon={Phone}
title="Let's Discuss Your Project"
description="Our team is ready to provide expert consultation and comprehensive solutions for your engineering and real estate needs. Contact us today to schedule a consultation."
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Contact Us", href: "/contact" },
{ text: "Back to Home", href: "/" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
bottomLeftText="© 2025 Trusted Real Estate. All rights reserved."
bottomRightText="Engineering Excellence Since 2010"
/>
</div>
</ThemeProvider>
);
}