refactor: update contact icons and next config remote patterns
This commit is contained in:
@@ -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() {
|
||||
<h3 className="text-xl font-serif text-sand">{t('fax')}</h3>
|
||||
<p className="text-sm opacity-60">+90 252 316 27 37</p>
|
||||
</div>
|
||||
<Fax className="w-8 h-8 opacity-20" />
|
||||
<Printer className="w-8 h-8 opacity-20" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -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: '/**',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user