This commit is contained in:
@@ -3,7 +3,7 @@ import { TrustStrip } from '@/components/TrustStrip/TrustStrip';
|
||||
import styles from './page.module.scss';
|
||||
|
||||
export const metadata = {
|
||||
title: 'О компании | PAN-PROM',
|
||||
title: 'О компании | Spairtech',
|
||||
};
|
||||
|
||||
export default function AboutPage() {
|
||||
@@ -13,11 +13,11 @@ export default function AboutPage() {
|
||||
<Breadcrumb
|
||||
items={[{ label: 'Главная', href: '/' }, { label: 'О компании' }]}
|
||||
/>
|
||||
<h1 className={styles.title}>О компании PAN-PROM</h1>
|
||||
<h1 className={styles.title}>О компании Spairtech</h1>
|
||||
|
||||
<div className={styles.content}>
|
||||
<p>
|
||||
PAN-PROM — поставщик промышленного оборудования и комплектующих от
|
||||
Spairtech — поставщик промышленного оборудования и комплектующих от
|
||||
ведущих европейских производителей. Мы специализируемся на
|
||||
гидравлике, пневматике, системах автоматизации (АСУ) и запасных
|
||||
частях.
|
||||
|
||||
@@ -15,8 +15,8 @@ export async function generateMetadata({
|
||||
const brand = brands.find((b) => b.id === Number(id));
|
||||
return {
|
||||
title: brand
|
||||
? `Каталог ${brand.name} | PAN-PROM`
|
||||
: 'Каталог | PAN-PROM',
|
||||
? `Каталог ${brand.name} | Spairtech`
|
||||
: 'Каталог | Spairtech',
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ export async function generateMetadata({
|
||||
const brands = await getBrands();
|
||||
const brand = brands.find((b) => b.id === Number(id));
|
||||
return {
|
||||
title: brand ? `${brand.name} | PAN-PROM` : 'Бренд | PAN-PROM',
|
||||
title: brand ? `${brand.name} | Spairtech` : 'Бренд | Spairtech',
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
export const metadata = {
|
||||
title: 'Корзина | PAN-PROM',
|
||||
title: 'Корзина | Spairtech',
|
||||
};
|
||||
|
||||
export default function CartLayout({
|
||||
|
||||
@@ -17,8 +17,8 @@ export async function generateMetadata({
|
||||
: undefined;
|
||||
|
||||
const title = catName
|
||||
? `${catName} | Каталог | PAN-PROM`
|
||||
: 'Каталог | PAN-PROM';
|
||||
? `${catName} | Каталог | Spairtech`
|
||||
: 'Каталог | Spairtech';
|
||||
|
||||
return { title };
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ import { Breadcrumb } from '@/components/Breadcrumb/Breadcrumb';
|
||||
import styles from './page.module.scss';
|
||||
|
||||
export const metadata = {
|
||||
title: 'Контакты | PAN-PROM',
|
||||
title: 'Контакты | Spairtech',
|
||||
};
|
||||
|
||||
export default function ContactPage() {
|
||||
@@ -20,7 +20,7 @@ export default function ContactPage() {
|
||||
<Icon name="phone" size={24} color="var(--color-orange-500)" />
|
||||
</div>
|
||||
<h3 className={styles.cardTitle}>Телефон</h3>
|
||||
<p className={styles.cardText}>+49 (0) 40 123-4567</p>
|
||||
<p className={styles.cardText}>+7 (000) 111-22-33</p>
|
||||
<p className={styles.cardNote}>Пн-Пт: 09:00 - 18:00 CET</p>
|
||||
</div>
|
||||
|
||||
@@ -29,7 +29,7 @@ export default function ContactPage() {
|
||||
<Icon name="mail" size={24} color="var(--color-orange-500)" />
|
||||
</div>
|
||||
<h3 className={styles.cardTitle}>Email</h3>
|
||||
<p className={styles.cardText}>info@pan-prom.eu</p>
|
||||
<p className={styles.cardText}>info@spairtech.com</p>
|
||||
<p className={styles.cardNote}>Ответ в течение 24 часов</p>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ import { Footer } from '@/components/Footer/Footer';
|
||||
import { CartProvider } from '@/components/CartProvider/CartProvider';
|
||||
|
||||
export const metadata = {
|
||||
title: 'PAN-PROM | Промышленное оборудование из Европы',
|
||||
title: 'Spairtech | Промышленное оборудование из Европы',
|
||||
description:
|
||||
'Гидравлика, пневматика, АСУ, запасные части. Прямые поставки оригинальных комплектующих от ведущих европейских производителей.',
|
||||
};
|
||||
|
||||
@@ -13,7 +13,7 @@ export async function generateMetadata({
|
||||
const products = await getProducts();
|
||||
const product = products.find((p) => p.sku === decodeURIComponent(sku));
|
||||
return {
|
||||
title: product ? `${product.name} | PAN-PROM` : 'Продукт | PAN-PROM',
|
||||
title: product ? `${product.name} | Spairtech` : 'Продукт | Spairtech',
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ import { RFQForm } from '@/components/RFQForm/RFQForm';
|
||||
import styles from './page.module.scss';
|
||||
|
||||
export const metadata = {
|
||||
title: 'Запрос цены | PAN-PROM',
|
||||
title: 'Запрос цены | Spairtech',
|
||||
};
|
||||
|
||||
export default function RFQPage() {
|
||||
|
||||
@@ -7,9 +7,9 @@ export function Footer() {
|
||||
<footer className={styles.footer}>
|
||||
<div className={styles.inner}>
|
||||
<div className={styles.brand}>
|
||||
<div className={styles.logoIcon}>PP</div>
|
||||
<div className={styles.logoIcon}>ST</div>
|
||||
<div>
|
||||
<div className={styles.logoTitle}>PAN-PROM</div>
|
||||
<div className={styles.logoTitle}>Spairtech</div>
|
||||
<div className={styles.logoSubtitle}>
|
||||
Промышленное оборудование из Европы
|
||||
</div>
|
||||
@@ -35,7 +35,7 @@ export function Footer() {
|
||||
</div>
|
||||
|
||||
<div className={styles.bottom}>
|
||||
<span>© {new Date().getFullYear()} PAN-PROM. Все права защищены.</span>
|
||||
<span>© {new Date().getFullYear()} Spairtech. Все права защищены.</span>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
|
||||
@@ -46,11 +46,11 @@ export function Header() {
|
||||
<div className={styles.topBarContacts}>
|
||||
<span className={styles.topBarItem}>
|
||||
<Icon name="phone" size={13} color="var(--color-orange-400)" />
|
||||
+49 (0) 40 123-4567
|
||||
+7 (000) 111-22-33
|
||||
</span>
|
||||
<span className={styles.topBarItem}>
|
||||
<Icon name="mail" size={13} color="var(--color-orange-400)" />
|
||||
info@pan-prom.eu
|
||||
info@spairtech.com
|
||||
</span>
|
||||
</div>
|
||||
<div className={styles.langSwitcher}>
|
||||
@@ -67,9 +67,9 @@ export function Header() {
|
||||
<div className={styles.mainNav}>
|
||||
{/* Logo */}
|
||||
<Link href="/" className={styles.logo}>
|
||||
<div className={styles.logoIcon}>PP</div>
|
||||
<div className={styles.logoIcon}>ST</div>
|
||||
<div>
|
||||
<div className={styles.logoTitle}>PAN-PROM</div>
|
||||
<div className={styles.logoTitle}>Spairtech</div>
|
||||
<div className={styles.logoSubtitle}>Выбор инженеров</div>
|
||||
</div>
|
||||
</Link>
|
||||
|
||||
@@ -27,8 +27,8 @@ export const footerColumns = [
|
||||
{
|
||||
title: 'Контакты',
|
||||
links: [
|
||||
{ label: '+49 (0) 40 123-4567', href: 'tel:+494012345678' },
|
||||
{ label: 'info@pan-prom.eu', href: 'mailto:info@pan-prom.eu' },
|
||||
{ label: '+7 (000) 111-22-33', href: 'tel:+70001112233' },
|
||||
{ label: 'info@spairtech.com', href: 'mailto:info@spairtech.com' },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user