diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 97bbab9..1d78574 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -89,7 +89,7 @@ export default function AboutPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-dealing-with-imposter-syndrome_23-2149692395.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-dealing-with-imposter-syndrome_23-2149692395.jpg?_wi=2" imageAlt="Andrea Falsina architect portrait" mediaAnimation="slide-up" /> @@ -128,7 +128,7 @@ export default function AboutPage() { icon: Users, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/woman-with-pen-taking-notes-near-plan_23-2148039901.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-with-pen-taking-notes-near-plan_23-2148039901.jpg?_wi=2" imageAlt="Architecture design and planning" mediaAnimation="slide-up" imagePosition="left" @@ -159,7 +159,7 @@ export default function AboutPage() { value: "150+", title: "Projects Completed", description: "From residential villas to commercial complexes, each project reflects our dedication to architectural excellence and client satisfaction.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-family-near-new-house-real-estate-concept_493343-29873.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-family-near-new-house-real-estate-concept_493343-29873.jpg?_wi=2", imageAlt: "Completed residential projects", }, { @@ -167,7 +167,7 @@ export default function AboutPage() { value: "15+", title: "Years of Experience", description: "Since 2009, we've built expertise across architectural design, renovation, interior design, and construction supervision.", - imageSrc: "http://img.b2bpic.net/free-photo/team-working-together-project_23-2149325485.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/team-working-together-project_23-2149325485.jpg?_wi=2", imageAlt: "Team collaboration and expertise", }, { @@ -175,7 +175,7 @@ export default function AboutPage() { value: "98%", title: "Client Satisfaction", description: "Our commitment to understanding client needs and delivering exceptional results is reflected in our high satisfaction rates and repeat clientele.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg?_wi=2", imageAlt: "Client testimonials", }, ]} 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}