diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4b13001..880ac6b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,48 +1,32 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Cormorant_Garamond, Inter } from "next/font/google";
import "./globals.css";
-import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
+const cormorant = Cormorant_Garamond({ variable: "--font-cormorant", subsets: ["latin"], weight: ["400", "500", "600", "700"] });
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Webild components 2",
- description: "Generated by create next app",
+ title: "Fiorino Bratislava | Autentické Talianske Lahôdky", description: "Zažite kúsok Talianska v srdci Bratislavy na Bottovej 4. Ponúkame kurátorský výber syrov, údenín a vín priamo od talianskych producentov.", keywords: ["deli", "bratislava", "talianske potraviny", "fiorino", "syry", "víno"],
+ metadataBase: new URL("https://fiorino.sk"),
+ robots: { index: true, follow: true },
+ openGraph: {
+ title: "Fiorino Bratislava", description: "Autentické talianske lahôdky v Bratislave.", type: "website"
+ }
};
-export default function RootLayout({
- children,
-}: Readonly<{
- children: React.ReactNode;
-}>) {
+export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
-
+
-
+
{children}
-
+
);
-}
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index f3ba2bc..af0a153 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -48,10 +48,10 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={false}
products={[
- { id: "p1", name: "Burrata Italiana", price: "12,99 €", variant: "Najobľúbenejšia", imageSrc: "http://img.b2bpic.net/free-photo/world-tapa-s-day-celebration-with-snacks_23-2149368934.jpg" },
- { id: "p2", name: "Prosciutto di Parma", price: "8,50 €", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/closeup-charcuterie-meat-products_53876-146578.jpg" },
- { id: "p3", name: "Caffè Fiorino Espresso", price: "6,90 €", variant: "Bestseller", imageSrc: "http://img.b2bpic.net/free-photo/close-up-barista-hands-preparing-coffee-customer-coffee-shop_93675-135049.jpg" },
- { id: "p4", name: "Prosecco Extra Dry", price: "15,50 €", variant: "Crowd favorite", imageSrc: "http://img.b2bpic.net/free-photo/table-with-glass-flowers_1157-783.jpg" }
+ { id: "p1", name: "Burrata Italiana", price: "12,99 €", variant: "Najobľúbenejšia", imageSrc: "http://img.b2bpic.net/free-photo/world-tapa-s-day-celebration-with-snacks_23-2149368934.jpg?_wi=1" },
+ { id: "p2", name: "Prosciutto di Parma", price: "8,50 €", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/closeup-charcuterie-meat-products_53876-146578.jpg?_wi=1" },
+ { id: "p3", name: "Caffè Fiorino Espresso", price: "6,90 €", variant: "Bestseller", imageSrc: "http://img.b2bpic.net/free-photo/close-up-barista-hands-preparing-coffee-customer-coffee-shop_93675-135049.jpg?_wi=1" },
+ { id: "p4", name: "Prosecco Extra Dry", price: "15,50 €", variant: "Crowd favorite", imageSrc: "http://img.b2bpic.net/free-photo/table-with-glass-flowers_1157-783.jpg?_wi=1" }
]}
/>
diff --git a/src/app/produkty/page.tsx b/src/app/produkty/page.tsx
index e8dacca..1166834 100644
--- a/src/app/produkty/page.tsx
+++ b/src/app/produkty/page.tsx
@@ -22,10 +22,10 @@ export default function ProductsPage() {