diff --git a/app/[locale]/contact/page.tsx b/app/[locale]/contact/page.tsx index 1a486a8..ef8fb7c 100644 --- a/app/[locale]/contact/page.tsx +++ b/app/[locale]/contact/page.tsx @@ -3,7 +3,7 @@ import { useTranslations } from 'next-intl'; import Navbar from '@/components/Navbar'; import Footer from '@/components/Footer'; -import { MapPin, Phone, Mail, Fax, Smartphone, Send } from 'lucide-react'; +import { MapPin, Phone, Mail, Printer, Smartphone, Send } from 'lucide-react'; export default function ContactPage() { const t = useTranslations('Contact'); @@ -79,7 +79,7 @@ export default function ContactPage() {

{t('fax')}

+90 252 316 27 37

- + diff --git a/next.config.ts b/next.config.ts index fbbd9a5..9cbf72f 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,19 +1,21 @@ +import type { NextConfig } from 'next'; import createNextIntlPlugin from 'next-intl/plugin'; const withNextIntl = createNextIntlPlugin(); -/** @type {import('next').NextConfig} */ -const nextConfig = { +const nextConfig: NextConfig = { output: 'standalone', images: { remotePatterns: [ { protocol: 'https', hostname: 'images.unsplash.com', + pathname: '/**', }, { protocol: 'https', hostname: 'res.cloudinary.com', + pathname: '/**', }, ], },