contact form updated , added telegram instagram icon buttons

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-02-09 19:21:22 +05:00
parent 625e21394f
commit dcdfce4d79
7 changed files with 118 additions and 57 deletions

View File

@@ -1,12 +1,11 @@
"use client";
import React from "react";
import { Button } from "@/components/ui/button";
import Image from "next/image";
import { Flame, Building2, Ambulance } from "lucide-react";
import DotAnimatsiya from "@/components/dot/DotAnimatsiya";
import { useTranslations } from "next-intl";
import { useLocale, useTranslations } from "next-intl";
import Link from "next/link";
interface ServiceItem {
icon: React.ReactNode;
@@ -16,6 +15,7 @@ interface ServiceItem {
export function AboutUs() {
const t = useTranslations();
const locale = useLocale();
const services: ServiceItem[] = [
{
icon: <Flame width={40} height={40} className="text-red-500" />,
@@ -76,9 +76,9 @@ export function AboutUs() {
{/* Button */}
<div>
<Button className="font-almarai bg-red-600 hover:bg-red-700 text-white font-bold px-8 py-3 rounded-full transition-colors duration-300 shadow-[0px_0px_2px_8px_#ff01015c]">
<Link href={`/${locale}/about`} className="font-almarai bg-red-600 hover:bg-red-700 text-white font-bold px-8 py-3 rounded-full transition-colors duration-300 shadow-[0px_0px_2px_8px_#ff01015c]">
{t("home.about.title")}
</Button>
</Link>
</div>
</div>

View File

@@ -1,8 +1,10 @@
import { useTranslations } from "next-intl";
import { useLocale, useTranslations } from "next-intl";
import DotAnimatsiya from "../../dot/DotAnimatsiya";
import Link from "next/link";
export function Banner() {
const t = useTranslations();
const locale = useLocale();
return (
<section className="relative w-full lg:h-[86vh] h-screen min-h-150 overflow-hidden pt-20">
{/* Background Image */}
@@ -77,8 +79,10 @@ export function Banner() {
</div>
{/* Main Heading */}
<h1 className="font-unbounded uppercase text-4xl bg-linear-to-br from-white via-white to-black
text-transparent bg-clip-text sm:text-5xl lg:text-6xl font-bold leading-tight text-pretty">
<h1
className="font-unbounded uppercase text-4xl bg-linear-to-br from-white via-white to-black
text-transparent bg-clip-text sm:text-5xl lg:text-6xl font-bold leading-tight text-pretty"
>
{t("home.banner.title2")}
</h1>
@@ -88,9 +92,12 @@ export function Banner() {
</p>
{/* CTA Button */}
<button className="font-almarai shadow-[0px_0px_2px_8px_#ff01015c] bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 w-fit">
<Link
href={`/${locale}/contact`}
className="font-almarai shadow-[0px_0px_2px_8px_#ff01015c] bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 w-fit"
>
{t("home.banner.cta")}
</button>
</Link>
</div>
</div>
</div>