Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -63,7 +63,7 @@ export default function AboutPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=7"
|
||||
imageAlt="Gloriana Tesoro, sommelier e fondatrice di Fefino"
|
||||
mediaAnimation="blur-reveal"
|
||||
className="py-20"
|
||||
@@ -102,7 +102,7 @@ export default function AboutPage() {
|
||||
quote: "Ogni ingrediente è scelto per la sua qualità, provenienza locale, e stagionalità. Niente additivi, conservanti, o coloranti artificiali. La terra e gli animali non soffrono nei nostri piatti.",
|
||||
name: "Gloriana Tesoro",
|
||||
role: "Fondatrice e Sommelier AIS",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=8",
|
||||
imageAlt: "Gloriana Tesoro",
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function AboutPage() {
|
||||
quote: "Non voglio che nessuno si senta escluso dal piacere della tavola. Vegan, vegetariano, senza glutine, senza lattosio, allergici: qui tutti mangeranno bene e con gioia.",
|
||||
name: "Gloriana Tesoro",
|
||||
role: "Chef e Visione",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=9",
|
||||
imageAlt: "Gloriana Tesoro",
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function AboutPage() {
|
||||
quote: "Fefino è una casa. Lo staff è tutto al femminile, preparato, caloroso. Conosco i clienti per nome. Si viene qui per mangiare, sì, ma anche per sentirsi parte di una comunità che si cura.",
|
||||
name: "Gloriana Tesoro",
|
||||
role: "Ospitalità",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=10",
|
||||
imageAlt: "Gloriana Tesoro",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -63,7 +63,7 @@ export default function ContactPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/villefranche-sur-mer-france-aerial-sea-view-idyllic-village-nature_1268-36321.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/villefranche-sur-mer-france-aerial-sea-view-idyllic-village-nature_1268-36321.jpg?_wi=1"
|
||||
imageAlt="Veduta aerea del porto di Trani con architettura storica"
|
||||
mediaAnimation="blur-reveal"
|
||||
className="py-20"
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans",
|
||||
subsets: ["latin"]
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Fefino — Cucina Naturale a Trani | Ristorante Vegano Inclusivo",
|
||||
description: "Ristorante a Trani con cucina macro-mediterranea, 100% fatto in casa. Diete vegan, senza glutine, inclusiva. Vini biologici. TripAdvisor 2022.",
|
||||
keywords: "ristorante vegano trani, cucina naturale puglia, ristorante senza glutine trani, cucina vegetariana trani, gluten free puglia, cucina macro-mediterranea, ristorante plant-based puglia, cucina inclusiva puglia",
|
||||
metadataBase: new URL("https://fefino.it"),
|
||||
alternates: {
|
||||
canonical: "https://fefino.it",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Fefino — Cucina Naturale a Trani",
|
||||
description: "Ristorante con cucina macro-mediterranea, fatto in casa. Vegano, senza glutine, inclusivo. Gloriana Tesoro, sommelier AIS.",
|
||||
url: "https://fefino.it",
|
||||
siteName: "Fefino",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://fefino.it/og-image.jpg",
|
||||
alt: "Sala di Fefino con archi in tufo",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Fefino — Cucina Naturale",
|
||||
description: "Ristorante vegano e inclusivo a Trani. Macro-mediterranea, fatto in casa.",
|
||||
images: ["https://fefino.it/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -61,7 +61,7 @@ const LocationPage = () => {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/villefranche-sur-mer-france-aerial-sea-view-idyllic-village-nature_1268-36321.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/villefranche-sur-mer-france-aerial-sea-view-idyllic-village-nature_1268-36321.jpg?_wi=2"
|
||||
imageAlt="Palazzo antico nel centro di Trani con vista sul porto"
|
||||
mediaAnimation="blur-reveal"
|
||||
className="py-20"
|
||||
|
||||
@@ -34,7 +34,7 @@ const MenuPage = () => {
|
||||
id: "spaghefini",
|
||||
name: "Spaghefini di Zucchina",
|
||||
price: "€12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-long-italian-pasta-raw-dark-grey-background_140725-134147.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-long-italian-pasta-raw-dark-grey-background_140725-134147.jpg?_wi=2",
|
||||
imageAlt: "Spaghetti di zucchina con salsa di peperoni colorata",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -42,7 +42,7 @@ const MenuPage = () => {
|
||||
id: "risotto-barbabietola",
|
||||
name: "Risotto alla Barbabietola",
|
||||
price: "€14",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greek-vegetable-casserole-with-rice-tomatoes_127032-3196.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greek-vegetable-casserole-with-rice-tomatoes_127032-3196.jpg?_wi=2",
|
||||
imageAlt: "Risotto cremoso rosso rubino alla barbabietola",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -50,7 +50,7 @@ const MenuPage = () => {
|
||||
id: "polpettine-melanzane",
|
||||
name: "Polpettine di Melanzane",
|
||||
price: "€11",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetable-pate-with-walnuts-green-leaves-along-with-crisps-red-wine-meal-products-grey-desk_140725-16115.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetable-pate-with-walnuts-green-leaves-along-with-crisps-red-wine-meal-products-grey-desk_140725-16115.jpg?_wi=2",
|
||||
imageAlt: "Polpettine vegetali di melanzane su salsa di pomodoro",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -58,7 +58,7 @@ const MenuPage = () => {
|
||||
id: "magic-sacher",
|
||||
name: "Magic Sacher",
|
||||
price: "€8",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-coffee-with-cookies-bread-chocolate_23-2147860330.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-coffee-with-cookies-bread-chocolate_23-2147860330.jpg?_wi=2",
|
||||
imageAlt: "Torta al cioccolato vegan con strati ricchi",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -66,7 +66,7 @@ const MenuPage = () => {
|
||||
id: "sushi-vegetale",
|
||||
name: "Sushi Vegetale",
|
||||
price: "€13",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnamese-spring-roll_1203-9939.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnamese-spring-roll_1203-9939.jpg?_wi=2",
|
||||
imageAlt: "Maki con patata dolce e melanzana cruda",
|
||||
isFavorited: false,
|
||||
},
|
||||
|
||||
@@ -121,7 +121,7 @@ export default function HomePage() {
|
||||
id: "spaghefini",
|
||||
name: "Spaghefini di Zucchina",
|
||||
price: "€12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-long-italian-pasta-raw-dark-grey-background_140725-134147.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-long-italian-pasta-raw-dark-grey-background_140725-134147.jpg?_wi=1",
|
||||
imageAlt: "Spaghetti di zucchina con salsa di peperoni colorata",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -129,7 +129,7 @@ export default function HomePage() {
|
||||
id: "risotto-barbabietola",
|
||||
name: "Risotto alla Barbabietola",
|
||||
price: "€14",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greek-vegetable-casserole-with-rice-tomatoes_127032-3196.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greek-vegetable-casserole-with-rice-tomatoes_127032-3196.jpg?_wi=1",
|
||||
imageAlt: "Risotto cremoso rosso rubino alla barbabietola",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -137,7 +137,7 @@ export default function HomePage() {
|
||||
id: "polpettine-melanzane",
|
||||
name: "Polpettine di Melanzane",
|
||||
price: "€11",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetable-pate-with-walnuts-green-leaves-along-with-crisps-red-wine-meal-products-grey-desk_140725-16115.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetable-pate-with-walnuts-green-leaves-along-with-crisps-red-wine-meal-products-grey-desk_140725-16115.jpg?_wi=1",
|
||||
imageAlt: "Polpettine vegetali di melanzane su salsa di pomodoro",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -145,7 +145,7 @@ export default function HomePage() {
|
||||
id: "magic-sacher",
|
||||
name: "Magic Sacher",
|
||||
price: "€8",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-coffee-with-cookies-bread-chocolate_23-2147860330.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-coffee-with-cookies-bread-chocolate_23-2147860330.jpg?_wi=1",
|
||||
imageAlt: "Torta al cioccolato vegan con strati ricchi",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -153,7 +153,7 @@ export default function HomePage() {
|
||||
id: "sushi-vegetale",
|
||||
name: "Sushi Vegetale",
|
||||
price: "€13",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnamese-spring-roll_1203-9939.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnamese-spring-roll_1203-9939.jpg?_wi=1",
|
||||
imageAlt: "Maki con patata dolce e melanzana cruda",
|
||||
isFavorited: false,
|
||||
},
|
||||
@@ -220,7 +220,7 @@ export default function HomePage() {
|
||||
quote: "Fefino non è solo un ristorante, è un'esperienza. La cucina rispetta il corpo e l'ambiente. Ogni piatto è un capolavoro naturale.",
|
||||
name: "Margherita L.",
|
||||
role: "Designer, Bari",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=1",
|
||||
imageAlt: "Cliente soddisfatto",
|
||||
},
|
||||
{
|
||||
@@ -229,7 +229,7 @@ export default function HomePage() {
|
||||
quote: "Sono senza glutine, mio fratello vegano, mia nonna ama il pesce. Tutti siamo stati accolti e nutriti meravigliosamente.",
|
||||
name: "Antonio M.",
|
||||
role: "Avvocato, Trani",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=2",
|
||||
imageAlt: "Cliente soddisfatto",
|
||||
},
|
||||
{
|
||||
@@ -238,7 +238,7 @@ export default function HomePage() {
|
||||
quote: "La filosofia macro-mediterranea è evidente. Piatti equilibrati, ingredienti vivi, niente artifici. La salute nel gusto.",
|
||||
name: "Dott. Giovanni R.",
|
||||
role: "Nutrizionista, Puglia",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=3",
|
||||
imageAlt: "Cliente soddisfatto",
|
||||
},
|
||||
{
|
||||
@@ -247,7 +247,7 @@ export default function HomePage() {
|
||||
quote: "Mi ricorda casa di nonna, ma raccontata da una chef moderna e consapevole. Magnifico. I vini biologici sono perfetti.",
|
||||
name: "Elena T.",
|
||||
role: "Giornalista Food, Italia",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=4",
|
||||
imageAlt: "Cliente soddisfatto",
|
||||
},
|
||||
{
|
||||
@@ -256,7 +256,7 @@ export default function HomePage() {
|
||||
quote: "Niente spreco, niente cattiveria verso animali o terra. Qui si mangia con coscienza. Torniamo sempre.",
|
||||
name: "Luca B.",
|
||||
role: "Ambientalista, Lecce",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=5",
|
||||
imageAlt: "Cliente soddisfatto",
|
||||
},
|
||||
{
|
||||
@@ -265,7 +265,7 @@ export default function HomePage() {
|
||||
quote: "Lo staff tutto al femminile è caloroso e preparato. Gloriana conosce ogni cliente per nome. Ci sentiamo a casa.",
|
||||
name: "Simona C.",
|
||||
role: "Proprietaria Boutique, Trani",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864187.jpg?_wi=6",
|
||||
imageAlt: "Cliente soddisfatto",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user