From 5b00a7d4cf0580ad01cc9dc527847059375dc066 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 21:47:06 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..332f3bb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_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 { Open_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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Andrea Falsina Architetto | Architectural Design & Renovation", + description: "Professional architecture studio specializing in residential design, renovations, interior design, and commercial projects. Discover our portfolio and services.", + keywords: "architecture, architect, design, renovation, residential, commercial, interior design, architectural firm", + metadataBase: new URL("https://www.andreafalsina.it"), + alternates: { + canonical: "https://www.andreafalsina.it", + }, + openGraph: { + title: "Andrea Falsina Architetto | Modern Architectural Design", + description: "Explore our portfolio of architectural projects showcasing design excellence and professional expertise.", + url: "https://www.andreafalsina.it", + siteName: "Andrea Falsina Architetto", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/modern-home-interior-decoration-with-flat-design_23-2147903206.jpg", + alt: "Andrea Falsina Architetto - Modern Architecture Design", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Andrea Falsina Architetto", + description: "Professional architecture and design services for residential, renovation, and commercial projects.", + images: ["http://img.b2bpic.net/free-vector/modern-home-interior-decoration-with-flat-design_23-2147903206.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}