service page begun

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-26 20:22:08 +05:00
parent c6bcb6d859
commit 0bcd4ba8e2
4 changed files with 58 additions and 1 deletions

13
app/services/page.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { OurService, Video } from "@/components/pages/home";
import { ServiceBanner } from "@/components/pages/services";
import React from "react";
export default function Page() {
return (
<div className="mb-90">
<ServiceBanner />
<OurService />
<Video />
</div>
);
}

View File

@@ -7,7 +7,7 @@ export function FaqBanner() {
<div <div
className="absolute inset-0 z-0" className="absolute inset-0 z-0"
style={{ style={{
backgroundImage: "url(/images/about/aboutBanner.jpg)", backgroundImage: "url(/images/faqBanner.jpg)",
backgroundSize: "cover", backgroundSize: "cover",
backgroundPosition: "center", backgroundPosition: "center",
}} }}

View File

@@ -0,0 +1 @@
export { ServiceBanner } from "./serviceBanner";

View File

@@ -0,0 +1,43 @@
import DotAnimatsiya from "@/components/dot/DotAnimatsiya";
export function ServiceBanner() {
return (
<section className="relative w-full h-[60vh] min-h-100 overflow-hidden pt-10">
{/* Background Image */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: "url(/images/faqBanner.jpg)",
backgroundSize: "cover",
backgroundPosition: "center",
}}
/>
{/* Gradient Overlay - Bottom-left to top-right */}
<div
className="absolute inset-0 z-10"
style={{
background: `linear-gradient(to top right, #d2610a 0%, #1e1d1ce3 30%, #1e1d1ce3 100%)`,
}}
/>
<div className="max-w-250 w-full mx-auto px-4">
<div className="relative z-20 h-full flex max-lg:flex-col items-start justify-between gap-5 pt-30">
<div className="spacw-y-4 ">
<DotAnimatsiya />
<p
className=" bg-linear-to-br from-white via-white to-black
text-transparent bg-clip-text text-4xl sm:text-5xl lg:text-6xl font-bold leading-tight text-pretty"
>
GENERAL <br /> QUESTIONS
</p>
</div>
<div className="lg:w-[40%] text-gray-300 mt-10 text-lg">
Always Ready, Always On Time: Rescuing Lives represents an
unwavering commitment to emergency.
</div>
</div>
</div>
</section>
);
}