new web sayt

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-11-25 21:08:28 +05:00
parent f9d27ec11d
commit 1419a208c9
2 changed files with 2 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ export function Navbar({ logoText = "FIRMA" }: NavbarProps) {
<motion.div whileHover={{ scale: 1.05 }} whileTap={{ scale: 0.95 }}> <motion.div whileHover={{ scale: 1.05 }} whileTap={{ scale: 0.95 }}>
<Link <Link
href={`/${locale}`} href={`/${locale}`}
className="text-2xl font-bold bg-gradient-to-r from-blue-600 to-blue-800 bg-clip-text text-transparent" className="text-2xl font-bold bg-linear-to-r from-blue-600 to-blue-800 bg-clip-text text-transparent"
> >
{logoText} {logoText}
</Link> </Link>

View File

@@ -4,9 +4,9 @@ import { useState } from "react";
import { motion } from "framer-motion"; import { motion } from "framer-motion";
import { useTranslations } from "next-intl"; import { useTranslations } from "next-intl";
import { ProductCard } from "./ProductCard"; import { ProductCard } from "./ProductCard";
import { ProductModal } from "./ProductModal";
import { getAllProducts } from "@/lib/products"; import { getAllProducts } from "@/lib/products";
import type { Product } from "@/lib/products"; import type { Product } from "@/lib/products";
import { ProductModal } from "./ProductModal";
export function ProductsGrid() { export function ProductsGrid() {
const t = useTranslations(); const t = useTranslations();