Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ca450c9945 | |||
| 68f1168279 | |||
| 4875d4c08f | |||
| c3a336fbe3 | |||
| c8f8e10800 | |||
| c35d5e1083 | |||
| 8cea2e2310 | |||
| cac7da40dd |
@@ -90,26 +90,14 @@ export default function AboutPage() {
|
|||||||
tag="Identità"
|
tag="Identità"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Esperienza Consolidata", tags: ["Expertise", "30+ Anni", "Affidabilità"],
|
||||||
title: "Esperienza Consolidata",
|
imageSrc: "http://img.b2bpic.net/free-photo/elegant-man-suit-showing-two-partners-paper_1262-811.jpg?_wi=3", imageAlt: "Team esperto"},
|
||||||
tags: ["Expertise", "30+ Anni", "Affidabilità"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-man-suit-showing-two-partners-paper_1262-811.jpg?_wi=3",
|
|
||||||
imageAlt: "Team esperto",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Qualità e Affidabilità", tags: ["Qualità", "Selezione", "Premium"],
|
||||||
title: "Qualità e Affidabilità",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-stainless-steel-kitchen-design-photo-was-made-restouraunt_613910-12332.jpg?_wi=4", imageAlt: "Qualità prodotti"},
|
||||||
tags: ["Qualità", "Selezione", "Premium"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-stainless-steel-kitchen-design-photo-was-made-restouraunt_613910-12332.jpg?_wi=4",
|
|
||||||
imageAlt: "Qualità prodotti",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Radicamento Locale", tags: ["Emilia-Romagna", "Locale", "Comunità"],
|
||||||
title: "Radicamento Locale",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-taking-notes-while-having-meeting-with-colleagues-office_637285-1026.jpg?_wi=2", imageAlt: "Radicamento locale"},
|
||||||
tags: ["Emilia-Romagna", "Locale", "Comunità"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-taking-notes-while-having-meeting-with-colleagues-office_637285-1026.jpg?_wi=2",
|
|
||||||
imageAlt: "Radicamento locale",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
@@ -77,34 +77,20 @@ export default function ContactPage() {
|
|||||||
description="Contattaci oggi stesso per ricevere una consulenza professionale. Ti risponderemo entro 24 ore con una proposta personalizzata per le tue esigenze."
|
description="Contattaci oggi stesso per ricevere una consulenza professionale. Ti risponderemo entro 24 ore con una proposta personalizzata per le tue esigenze."
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{
|
||||||
name: "nome",
|
name: "nome", type: "text", placeholder: "Il tuo nome", required: true,
|
||||||
type: "text",
|
|
||||||
placeholder: "Il tuo nome",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "telefono",
|
name: "telefono", type: "tel", placeholder: "Numero di telefono", required: true,
|
||||||
type: "tel",
|
|
||||||
placeholder: "Numero di telefono",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "attivita",
|
name: "attivita", type: "text", placeholder: "Tipo di attività (es. Pizzeria, Hotel, Panificio)", required: true,
|
||||||
type: "text",
|
|
||||||
placeholder: "Tipo di attività (es. Pizzeria, Hotel, Panificio)",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "email",
|
name: "email", type: "email", placeholder: "Email", required: false,
|
||||||
type: "email",
|
|
||||||
placeholder: "Email",
|
|
||||||
required: false,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "richiesta",
|
name: "richiesta", placeholder: "Descrivi brevemente la tua richiesta o i prodotti di interesse", rows: 4,
|
||||||
placeholder: "Descrivi brevemente la tua richiesta o i prodotti di interesse",
|
|
||||||
rows: 4,
|
|
||||||
required: true,
|
required: true,
|
||||||
}}
|
}}
|
||||||
buttonText="Invia Richiesta"
|
buttonText="Invia Richiesta"
|
||||||
|
|||||||
@@ -1,33 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Open_Sans } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const openSans = Open_Sans({
|
const poppins = Poppins({
|
||||||
variable: "--font-open-sans",
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Tumiati Attrezzature Alberghiere - Forniture Professionali Emilia-Romagna",
|
title: "Tumiati Attrezzature Alberghiere - Forniture Professionali Emilia-Romagna", description: "Partner professionale per attrezzature alberghiere, forni professionali e forniture per ristoranti, pizzerie e hotel in Emilia-Romagna. Consulenza tecnica e assistenza dedicata.", keywords: "attrezzature alberghiere, forni professionali, forniture pizzerie, attrezzature hotel, forniture ristorante, Emilia-Romagna", robots: {
|
||||||
description: "Partner professionale per attrezzature alberghiere, forni professionali e forniture per ristoranti, pizzerie e hotel in Emilia-Romagna. Consulenza tecnica e assistenza dedicata.",
|
|
||||||
keywords: "attrezzature alberghiere, forni professionali, forniture pizzerie, attrezzature hotel, forniture ristorante, Emilia-Romagna",
|
|
||||||
robots: {
|
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true,
|
||||||
},
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "Tumiati Attrezzature Alberghiere",
|
title: "Tumiati Attrezzature Alberghiere", description: "Soluzioni professionali per la cottura e le attrezzature horeca con 30+ anni di esperienza", type: "website", siteName: "Tumiati Attrezzature"},
|
||||||
description: "Soluzioni professionali per la cottura e le attrezzature horeca con 30+ anni di esperienza",
|
|
||||||
type: "website",
|
|
||||||
siteName: "Tumiati Attrezzature",
|
|
||||||
},
|
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image",
|
card: "summary_large_image", title: "Tumiati Attrezzature Alberghiere", description: "Partner professionale per attrezzature horeca in Emilia-Romagna"},
|
||||||
title: "Tumiati Attrezzature Alberghiere",
|
|
||||||
description: "Partner professionale per attrezzature horeca in Emilia-Romagna",
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -38,7 +28,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${openSans.variable} antialiased`}>
|
<body className={`${poppins.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
@@ -81,17 +81,11 @@ export default function HomePage() {
|
|||||||
]}
|
]}
|
||||||
slides={[
|
slides={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-stainless-steel-kitchen-design-photo-was-made-restouraunt_613910-12332.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-stainless-steel-kitchen-design-photo-was-made-restouraunt_613910-12332.jpg?_wi=1", imageAlt: "Cucina professionale moderna"},
|
||||||
imageAlt: "Cucina professionale moderna",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/bakery-preparing-selling-tasty-breads_181624-58950.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/bakery-preparing-selling-tasty-breads_181624-58950.jpg?_wi=1", imageAlt: "Forni professionali per pizzerie e panifici"},
|
||||||
imageAlt: "Forni professionali per pizzerie e panifici",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-machine-cups_23-2148523032.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-machine-cups_23-2148523032.jpg?_wi=1", imageAlt: "Attrezzature alberghiere di qualità"},
|
||||||
imageAlt: "Attrezzature alberghiere di qualità",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
autoplayDelay={4000}
|
autoplayDelay={4000}
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
@@ -105,33 +99,17 @@ export default function HomePage() {
|
|||||||
tag="Servizi"
|
tag="Servizi"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Forni Professionali per Pizzerie", tags: ["Pizzeria", "Forno", "Cottura"],
|
||||||
title: "Forni Professionali per Pizzerie",
|
imageSrc: "http://img.b2bpic.net/free-photo/bakery-preparing-selling-tasty-breads_181624-58950.jpg?_wi=2", imageAlt: "Forni professionali pizzeria"},
|
||||||
tags: ["Pizzeria", "Forno", "Cottura"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/bakery-preparing-selling-tasty-breads_181624-58950.jpg?_wi=2",
|
|
||||||
imageAlt: "Forni professionali pizzeria",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Attrezzature per Panifici", tags: ["Panificio", "Forno", "Impastatrici"],
|
||||||
title: "Attrezzature per Panifici",
|
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-machine-cups_23-2148523032.jpg?_wi=2", imageAlt: "Attrezzature panificio"},
|
||||||
tags: ["Panificio", "Forno", "Impastatrici"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-machine-cups_23-2148523032.jpg?_wi=2",
|
|
||||||
imageAlt: "Attrezzature panificio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Forniture Alberghiere Completi", tags: ["Hotel", "Cucina", "Forniture"],
|
||||||
title: "Forniture Alberghiere Completi",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-takes-speciall-opening-plastic-instrument-from-his-tool-bag-repair-tablet_346278-1781.jpg?_wi=1", imageAlt: "Forniture alberghiere"},
|
||||||
tags: ["Hotel", "Cucina", "Forniture"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-takes-speciall-opening-plastic-instrument-from-his-tool-bag-repair-tablet_346278-1781.jpg?_wi=1",
|
|
||||||
imageAlt: "Forniture alberghiere",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Assistenza Tecnica e Manutenzione", tags: ["Supporto", "Manutenzione", "Garanzia"],
|
||||||
title: "Assistenza Tecnica e Manutenzione",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-takes-speciall-opening-plastic-instrument-from-his-tool-bag-repair-tablet_346278-1781.jpg?_wi=2", imageAlt: "Assistenza tecnica professionale"},
|
||||||
tags: ["Supporto", "Manutenzione", "Garanzia"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-takes-speciall-opening-plastic-instrument-from-his-tool-bag-repair-tablet_346278-1781.jpg?_wi=2",
|
|
||||||
imageAlt: "Assistenza tecnica professionale",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -160,33 +138,17 @@ export default function HomePage() {
|
|||||||
tag="Vantaggi"
|
tag="Vantaggi"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Grande Esperienza Consolidata", tags: ["Esperienza", "Professionalità", "Competenza"],
|
||||||
title: "Grande Esperienza Consolidata",
|
imageSrc: "http://img.b2bpic.net/free-photo/elegant-man-suit-showing-two-partners-paper_1262-811.jpg?_wi=1", imageAlt: "Team esperto"},
|
||||||
tags: ["Esperienza", "Professionalità", "Competenza"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-man-suit-showing-two-partners-paper_1262-811.jpg?_wi=1",
|
|
||||||
imageAlt: "Team esperto",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Consulenza Tecnica Personalizzata", tags: ["Consulenza", "Supporto", "Soluzione"],
|
||||||
title: "Consulenza Tecnica Personalizzata",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-949.jpg?_wi=1", imageAlt: "Consulenza personalizzata"},
|
||||||
tags: ["Consulenza", "Supporto", "Soluzione"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-949.jpg?_wi=1",
|
|
||||||
imageAlt: "Consulenza personalizzata",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Disponibilità Costante", tags: ["Veloce", "Affidabile", "Presente"],
|
||||||
title: "Disponibilità Costante",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-takes-speciall-opening-plastic-instrument-from-his-tool-bag-repair-tablet_346278-1781.jpg?_wi=3", imageAlt: "Assistenza costante"},
|
||||||
tags: ["Veloce", "Affidabile", "Presente"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-takes-speciall-opening-plastic-instrument-from-his-tool-bag-repair-tablet_346278-1781.jpg?_wi=3",
|
|
||||||
imageAlt: "Assistenza costante",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Punto di Riferimento Locale", tags: ["Emilia-Romagna", "Locale", "Radicato"],
|
||||||
title: "Punto di Riferimento Locale",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-stainless-steel-kitchen-design-photo-was-made-restouraunt_613910-12332.jpg?_wi=2", imageAlt: "Punto di riferimento locale"},
|
||||||
tags: ["Emilia-Romagna", "Locale", "Radicato"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-stainless-steel-kitchen-design-photo-was-made-restouraunt_613910-12332.jpg?_wi=2",
|
|
||||||
imageAlt: "Punto di riferimento locale",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -201,21 +163,13 @@ export default function HomePage() {
|
|||||||
author="Marco Rossi, Proprietario Pizzeria"
|
author="Marco Rossi, Proprietario Pizzeria"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-barista-using-digital-tablet-while-working-bar_637285-3367.jpg",
|
src: "http://img.b2bpic.net/free-photo/smiling-barista-using-digital-tablet-while-working-bar_637285-3367.jpg", alt: "Marco Rossi"},
|
||||||
alt: "Marco Rossi",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Cliente 2"},
|
||||||
alt: "Cliente 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Cliente 3"},
|
||||||
alt: "Cliente 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg",
|
src: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg", alt: "Cliente 4"},
|
||||||
alt: "Cliente 4",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ratingAnimation="slide-up"
|
ratingAnimation="slide-up"
|
||||||
avatarsAnimation="slide-up"
|
avatarsAnimation="slide-up"
|
||||||
|
|||||||
@@ -74,33 +74,17 @@ export default function ServicesPage() {
|
|||||||
tag="Gamma Completa"
|
tag="Gamma Completa"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Forni Professionali per Pizzerie", tags: ["Pizzeria", "Forno", "Cottura", "Premium"],
|
||||||
title: "Forni Professionali per Pizzerie",
|
imageSrc: "http://img.b2bpic.net/free-photo/bakery-preparing-selling-tasty-breads_181624-58950.jpg?_wi=3", imageAlt: "Forni professionali pizzeria"},
|
||||||
tags: ["Pizzeria", "Forno", "Cottura", "Premium"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/bakery-preparing-selling-tasty-breads_181624-58950.jpg?_wi=3",
|
|
||||||
imageAlt: "Forni professionali pizzeria",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Attrezzature per Panifici", tags: ["Panificio", "Forno", "Impastatrici", "Vitrine"],
|
||||||
title: "Attrezzature per Panifici",
|
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-machine-cups_23-2148523032.jpg?_wi=3", imageAlt: "Attrezzature panificio"},
|
||||||
tags: ["Panificio", "Forno", "Impastatrici", "Vitrine"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-machine-cups_23-2148523032.jpg?_wi=3",
|
|
||||||
imageAlt: "Attrezzature panificio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Forniture Alberghiere Completi", tags: ["Hotel", "Cucina", "Forniture", "Cucine"],
|
||||||
title: "Forniture Alberghiere Completi",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-stainless-steel-kitchen-design-photo-was-made-restouraunt_613910-12332.jpg?_wi=3", imageAlt: "Forniture alberghiere"},
|
||||||
tags: ["Hotel", "Cucina", "Forniture", "Cucine"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-stainless-steel-kitchen-design-photo-was-made-restouraunt_613910-12332.jpg?_wi=3",
|
|
||||||
imageAlt: "Forniture alberghiere",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Assistenza Tecnica e Manutenzione", tags: ["Supporto", "Manutenzione", "Garanzia", "24/7"],
|
||||||
title: "Assistenza Tecnica e Manutenzione",
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-takes-speciall-opening-plastic-instrument-from-his-tool-bag-repair-tablet_346278-1781.jpg?_wi=4", imageAlt: "Assistenza tecnica professionale"},
|
||||||
tags: ["Supporto", "Manutenzione", "Garanzia", "24/7"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-takes-speciall-opening-plastic-instrument-from-his-tool-bag-repair-tablet_346278-1781.jpg?_wi=4",
|
|
||||||
imageAlt: "Assistenza tecnica professionale",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -114,26 +98,14 @@ export default function ServicesPage() {
|
|||||||
description="Offriamo pacchetti customizzati che si adattano perfettamente alle necessità specifiche del tuo business. Consulenza gratuita per identificare la soluzione ideale."
|
description="Offriamo pacchetti customizzati che si adattano perfettamente alle necessità specifiche del tuo business. Consulenza gratuita per identificare la soluzione ideale."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Consulenza Tecnica Dedicata", tags: ["Consulenza", "Progettazione", "Personalizzazione"],
|
||||||
title: "Consulenza Tecnica Dedicata",
|
imageSrc: "http://img.b2bpic.net/free-photo/elegant-man-suit-showing-two-partners-paper_1262-811.jpg?_wi=2", imageAlt: "Consulenza personalizzata"},
|
||||||
tags: ["Consulenza", "Progettazione", "Personalizzazione"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-man-suit-showing-two-partners-paper_1262-811.jpg?_wi=2",
|
|
||||||
imageAlt: "Consulenza personalizzata",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "Installazione Professionale", tags: ["Installazione", "Configurazione", "Collaudo"],
|
||||||
title: "Installazione Professionale",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-taking-notes-while-having-meeting-with-colleagues-office_637285-1026.jpg?_wi=1", imageAlt: "Installazione professionale"},
|
||||||
tags: ["Installazione", "Configurazione", "Collaudo"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-taking-notes-while-having-meeting-with-colleagues-office_637285-1026.jpg?_wi=1",
|
|
||||||
imageAlt: "Installazione professionale",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "7",
|
id: "7", title: "Formazione Operatori", tags: ["Training", "Sicurezza", "Best Practice"],
|
||||||
title: "Formazione Operatori",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-949.jpg?_wi=2", imageAlt: "Formazione operatori"},
|
||||||
tags: ["Training", "Sicurezza", "Best Practice"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-949.jpg?_wi=2",
|
|
||||||
imageAlt: "Formazione operatori",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-open-sans), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-open-sans), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #fffefe;;
|
/* --background: #ffffff;;;
|
||||||
--card: #f6f7f4;;
|
--card: #f9f9f9;;;
|
||||||
--foreground: #080908;;
|
--foreground: #000612e6;;;
|
||||||
--primary-cta: #0e3a29;;
|
--primary-cta: #15479c;;;
|
||||||
--secondary-cta: #e7eecd;;
|
--secondary-cta: #f9f9f9;;;
|
||||||
--accent: #35c18b;;
|
--accent: #e2e2e2;;;
|
||||||
--background-accent: #ecebe4;; */
|
--background-accent: #c4c4c4;;; */
|
||||||
|
|
||||||
--background: #fffefe;;
|
--background: #ffffff;;;
|
||||||
--card: #f6f7f4;;
|
--card: #f9f9f9;;;
|
||||||
--foreground: #080908;;
|
--foreground: #000612e6;;;
|
||||||
--primary-cta: #0e3a29;;
|
--primary-cta: #15479c;;;
|
||||||
--primary-cta-text: #fffefe;;
|
--primary-cta-text: #ffffff;;;
|
||||||
--secondary-cta: #e7eecd;;
|
--secondary-cta: #f9f9f9;;;
|
||||||
--secondary-cta-text: #080908;;
|
--secondary-cta-text: #000612e6;;;
|
||||||
--accent: #35c18b;;
|
--accent: #e2e2e2;;;
|
||||||
--background-accent: #ecebe4;;
|
--background-accent: #c4c4c4;;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user